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
48 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (46 loc) · 1.25 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
{
"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",
"tsc": "tsc",
"tsc:w": "tsc -w",
"server": "node server.js",
"start": "concurrently \"npm run tsc:w\" \"supervisor -i app server.js\"",
"typings": "typings"
},
"license": "ISC",
"dependencies": {
"@angular/common": "2.0.0-rc.6",
"@angular/compiler": "2.0.0-rc.6",
"@angular/core": "2.0.0-rc.6",
"@angular/forms": "2.0.0-rc.6",
"@angular/http": "2.0.0-rc.6",
"@angular/platform-browser": "2.0.0-rc.6",
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
"@angular/router": "3.0.0-rc.2",
"systemjs": "0.19.38",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-beta.11",
"zone.js": "^0.6.19",
"express": "^4.14.0",
"pug": "^2.0.0-beta6",
"mongoose": "^4.6.0",
"cookie-parser": "^1.4.3",
"body-parser": "^1.15.2",
"express-session": "^1.14.1",
"errorhandler": "^1.4.3",
"csurf": "^1.9.0"
},
"devDependencies": {
"concurrently": "^2.2.0",
"typescript": "1.8.10",
"typings": "^1.3.3"
}
}