-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "tsp-nea",
"version": "0.1.0",
"description": "",
"private": true,
"main": "./dist/main/main.js",
"scripts": {
"build": "gulp",
"sstart": "electron .",
"start": "gulp && concurrently \"webpack --watch \" \"gulp watch\" \"electron ./dist/main/main.js\" ",
"pack": "gulp && electron-builder"
},
"repository": "",
"author": "",
"license": "",
"devDependencies": {
"concurrently": "^7.0.0",
"css-loader": "^6.5.1",
"del": "^6.0.0",
"electron": "^16.0.2",
"electron-builder": "^22.14.5",
"electron-reloader": "^1.2.1",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"typescript": "^4.5.5"
},
"dependencies": {
"zeromq": "^6.0.0-beta.6"
},
"overrides": {
"glob-parent": ">5.1.2"
},
"build": {
"appId": "com.JoshuaJose.tspNea",
"win": {
"target": "NSIS"
},
"files": [
"dist",
"node_modules",
"package.json"
],
"directories": {
"output": "build"
}
}
}