-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "ng-server",
"version": "1.0.0",
"description": "angular2 static server",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run serve --production",
"serve": "node dist/server.js",
"build-ts": "tsc",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"build": "npm run build-ts && npm run copy-static-assets",
"tsc:w": "tsc -w",
"install": "node nw.js -i",
"uninstall":"node nw.js -u"
},
"author": "xugege",
"license": "ISC",
"dependencies": {
"@types/shelljs": "^0.7.8",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"dotenv": "^5.0.1",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"shelljs": "^0.8.1",
"winston": "^2.4.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/compression": "0.0.36",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/winston": "^2.3.8",
"commander": "^2.15.1",
"node-windows": "^0.1.14",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}