forked from vladotesanovic/angular2-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "angular2-express-starter",
"version": "1.0.0",
"description": "Starter application of Angular2 on Express",
"main": "gulpfile.js",
"private": true,
"scripts": {
"develop": "concurrently \"tsc -w -p ./server\" \"tsc -w -p ./client\" \"nodemon ./server/bin/www\" ",
"typings": "typings install"
},
"engines": {
"node": ">= 5.4.1 < 6"
},
"author": "Vlado Tešanović",
"license": "MIT",
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"express": "^4.13.4",
"express-jwt": "^3.3.0",
"jsonwebtoken": "^5.5.4",
"morgan": "~1.6.1",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"angular2": "^2.0.0-beta.15",
"angular2-jwt": "^0.1.9",
"concurrently": "^2.0.0",
"es6-promise": "^3.0.2",
"es6-shim": "0.35.0",
"ng-semantic": "^1.0.21",
"nodemon": "^1.9.1",
"recursive-copy": "^2.0.3",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"systemjs": "^0.19.26",
"typescript": "^1.8.10",
"typings": "^0.7.12",
"zone.js": "0.6.10"
}
}