forked from Yuvix25/ReHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 936 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 936 Bytes
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
{
"dependencies": {
"@microsoft/signalr": "^8.0.0",
"detector": "^2.5.0",
"electron": "^26.2.4",
"source-map-js": "^1.0.2",
"ws": "^8.17.1"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.12.0",
"html-webpack-plugin": "^5.6.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"prestart": "webpack --config webpack.config.js",
"prestart:dev": "webpack --config webpack.config.debug.js",
"prestart:watch": "webpack --config webpack.config.js --watch",
"start": "electronize start /args --inspect=9090",
"build": "npm run prestart && electronize build /target win",
"build:web": "webpack --config webpack.config.web.js",
"serve": "webpack serve --config webpack.config.web.js --watch"
}
}