-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@worker/app",
"version": "1.51.0-alpha.2",
"description": "Boilerplace",
"private": true,
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"oldbuild-win32": "mkdir deploy & rimraf deploy/worker.exe && nexe dist/index.js -t windows-x64-12.18.1 -o deploy/worker.exe && node scripts/copy-natives.js win32-x64",
"build-win32": "node ../../../scripts/build-win32.mjs worker.exe && node ../../../scripts/copy-natives.js win32-x64",
"__test": "jest",
"start": "node dist/index.js"
},
"dependencies": {
"@worker/generic": "1.51.0-alpha.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"lerna": "^6.6.1",
"rimraf": "^5.0.5"
}
}