forked from vladotesanovic/angular2-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 KB
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
{
"name": "angular2-express-starter",
"version": "1.0.0",
"description": "Starter application of Angular2 on Express",
"main": "server/app.js",
"private": true,
"scripts": {
"develop": "concurrently \"tsc -w -p ./server\" \"tsc -w -p ./client\" \"nodemon ./server/bin/www\" ",
"forever": "tsc -p ./server && forever start ./server/bin/www --watch",
"twc:client:w": "tsc -w -p ./client",
"twc:server:w": "tsc -w -p ./server",
"typings": "typings install",
"bundle:prod": "node tools/builder.js --prod",
"postinstall": "typings install && tsc -p ./server"
},
"engines": {
"node": ">= 5.4.1"
},
"author": "Vlado Tešanović",
"license": "MIT",
"dependencies": {
"@types/body-parser": "0.0.32",
"@types/express": "^4.0.32",
"@types/jsonwebtoken": "^7.1.31",
"@types/serve-favicon": "^2.2.27",
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "^2.2.0",
"express": "^4.13.4",
"express-jwt": "^3.3.0",
"forever": "^0.15.2",
"jsonwebtoken": "^5.7.0",
"serve-favicon": "~2.3.0",
"typescript": "^2.0.2",
"typings": "^1.3.2"
},
"devDependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.0",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.27",
"zone.js": "^0.6.23",
"angular2-in-memory-web-api": "0.0.20",
"@types/core-js": "^0.9.32",
"@types/jasmine": "^2.2.33",
"angular2-jwt": "^0.1.22",
"concurrently": "^2.2.0",
"ng-semantic": "^1.1.3",
"nodemon": "^1.9.1",
"systemjs-builder": "^0.15.26",
"yargs": "^4.8.1"
}
}