-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 911 Bytes
/
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
{
"name": "ng-desktop-app",
"version": "1.0.0",
"description": "a quick start project for a angular desktop app",
"main": "http://localhost:8000",
"node-remote": "http://localhost:8000",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "cd desktop-app && npm i",
"dev:start": "nw .",
"dev:serve": "cd desktop-app && ng serve --port=8000",
"build:prod": "node build.js",
"build:package": "echo build package"
},
"window": {
"single-instance": false
},
"author": "Laurent Boukhadcha",
"license": "ISC",
"devDependencies": {
"@types/execa": "^0.9.0",
"@types/node": "^12.0.0",
"cz-conventional-changelog": "^2.1.0",
"nw": "^0.38.2"
},
"dependencies": {
"execa": "^1.0.0",
"fs-extra": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}