-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
98 lines (98 loc) · 3.37 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
{
"name": "ndi-controller",
"version": "1.5.1",
"description": "Manage and route your NDI signals",
"author": "Olzzon /Kasper Olsson Hans",
"main": "public/electron.js",
"contributors": [
{
"name": "Kasper Olsson Hans",
"url": "https://github.com/olzzon"
}
],
"scripts": {
"watch-server": "tsc -p src/server -watch",
"watch-client": "cross-env NODE_ENV=development TS_NODE_PROJECT=\"src/client/tsconfig.json\" webpack --watch",
"build-watch": "yarn watch-server & yarn watch-client",
"build": "yarn build-client && yarn build-server",
"build-server": "tsc -p ./src/server",
"build-client": "cross-env NODE_ENV=production TS_NODE_PROJECT=\"./src/client/tsconfig.json\" webpack && cp ./src/client/index.html ./build/client/index.html",
"dev": "electron .",
"start": "node build/server/index.js",
"start-dev": "node --inspect build/server/index.js",
"start-break": "node --inspect-brk build/server/index.js",
"build-release": "electron-builder -mw",
"package": "yarn pkg .",
"release": "standard-version",
"rebuild": "node-pre-gyp install --build-from-source",
"inspect": "node --inspect dist/index.js",
"validate:dependencies": "yarn audit",
"license-validate": "node-license-validator -p -d --allow-licenses MIT MIT/X11 BSD BSD-3-Clause BSD-2-Clause ISC Apache Apache-2.0 Unlicense --allow-packages cycle"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"electron-is-dev": "^2.0.0",
"express": "^4.17.2",
"node-emberplus": "^2.5.10",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"winston": "^3.5.1"
},
"bin": {
"server": "./build/server/index.js"
},
"pkg": {
"scripts": "./build/server/index.js",
"assets": "./build/client/**/*",
"targets": [
"node12-win-x64"
],
"outputPath": "package"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.3.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"electron": "^17.0.0",
"electron-builder": "^22.14.5",
"file-loader": "^6.2.0",
"node-gyp": "^8.4.1",
"node-license-validator": "^1.3.2",
"node-pre-gyp": "^0.17.0",
"pkg": "^5.5.2",
"prettier": "2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standard-version": "^9.3.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"resolutions": {
"node-fetch": "^2.6.7",
"nanoid": "^3.1.31",
"simple-get": "^4.0.1",
"minimist": "^0.2.1",
"engine.io": "^6.1.1",
"trim-off-newlines": "^1.0.3",
"ansi-regex": "^5.0.1"
},
"build": {
"appId": "com.ndi-controller.app",
"asar": true,
"asarUnpack": [
"**/build/Release/**/*"
],
"files": [
"build/**/*",
"public/**/*",
"!src/**/*"
]
}
}