forked from DanWahlin/Angular-RESTfulService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "restfulservice",
"author": "Dan Wahlin",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/danwahlin/Angular2-RestfulService"
},
"scripts": {
"postinstall": "npm run typings install",
"build": "tsc",
"build:w": "tsc --watch",
"bundle": "node bundle.js",
"bundle:prod": "node bundle.js --prod",
"server": "node server.js",
"start": "concurrently \"npm run build:w\" \"supervisor -i app server.js\"",
"typings": "typings"
},
"dependencies": {
"@angular/common": "0.0.0-5",
"@angular/compiler": "0.0.0-5",
"@angular/core": "0.0.0-5",
"@angular/platform-browser": "0.0.0-5",
"@angular/platform-browser-dynamic": "0.0.0-5",
"@angular/http": "0.0.0-5",
"@angular/router": "0.0.0-5",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"systemjs": "0.19.26",
"zone.js": "0.6.12",
"express": "4.13.4",
"jade": ">=1.11.0",
"mongoose": ">=4.4.12",
"cookie-parser": "^1.4.1",
"body-parser": "^1.15.0",
"express-session": "^1.13.0",
"errorhandler": "^1.4.3",
"csurf": "^1.8.3",
"nodemon": "^1.9.1"
},
"devDependencies": {
"concurrently": "^2.0.0",
"live-server": "^1.0.0",
"typescript": "^1.8.10",
"typings":"^0.8.1",
"systemjs-builder": "^0.15.15",
"yargs": "^4.6.0"
}
}