-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.27 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "sofie-chef",
"version": "0.4.0",
"description": "Sofie Chef - Disrupting the industry & stirring pots",
"author": {
"name": "NRK"
},
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"watch:build": "tsc -w",
"watch:electron": "nodemon --exec npm start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "electron ./dist/main.js",
"build:binary": "electron-builder",
"dev": "yarn && yarn build && concurrently --kill-others \"yarn watch:build\" \"yarn watch:electron\"",
"release:release": "sofie-version",
"release": "yarn release:release"
},
"repository": "https://github.com/nrkno/sofie-chef",
"homepage": "https://github.com/nrkno/sofie-chef#readme",
"keywords": [
"Electron",
"sofie",
"casparcg",
"typescript"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.5",
"@types/koa": "^2.13.9",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.5",
"@types/koa__cors": "^4.0.3",
"@types/underscore": "^1.11.9",
"@types/url-join": "^4.0.1",
"@types/ws": "^8.5.6",
"concurrently": "^8.2.1",
"electron": "^31.0.0",
"electron-builder": "^24.6.4",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"typescript": "~4.9"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"chokidar": "^3.5.3",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.1",
"koa-router": "^12.0.0",
"underscore": "^1.13.6",
"url-join": "^4.0.1",
"winston": "^3.10.0",
"ws": "^8.14.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"nodemonConfig": {
"watch": [
"dist/**"
],
"ignore": [
"**/test/**",
"**/docs/**"
],
"verbose": true,
"delay": 300
},
"build": {
"productName": "SofieChef",
"appId": "no.nrk.sofiechef",
"win": {
"extraFiles": []
},
"linux": {
"extraFiles": []
},
"dmg": {
"artifactName": "SofieChef ${version} macOS Installer.${ext}"
},
"nsis": {
"artifactName": "SofieChef ${version} Windows Installer.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"appImage": {
"artifactName": "SofieChef ${version} Linux Executable.${ext}"
},
"snap": {
"publish": "github"
},
"files": [
"dist/**/*",
"static/**/*"
]
}
}