-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@single-app/app",
"version": "1.50.7",
"description": "Package Manager, http-proxy etc.. all in one application",
"private": true,
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"build-win32": "node ../../../scripts/build-win32.mjs package-manager-single-app.exe && node ../../../scripts/copy-natives.js win32-x64",
"__test": "jest",
"start": "node --inspect dist/index.js"
},
"peerDependencies": {
"@sofie-automation/server-core-integration": "*",
"@sofie-automation/shared-lib": "*",
"typescript": "*"
},
"dependencies": {
"@appcontainer-node/generic": "1.50.6",
"@http-server/generic": "1.50.7",
"@package-manager/generic": "1.50.6",
"@quantel-http-transformer-proxy/generic": "1.50.6",
"@sofie-package-manager/api": "1.50.6",
"@sofie-package-manager/worker": "1.50.6",
"@sofie-package-manager/workforce": "1.50.6",
"underscore": "^1.12.0"
},
"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"
}
}