-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
45
46
47
48
49
{
"name": "angular-node-restfulservice",
"author": "Dan Wahlin",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/danwahlin/Angular-RestfulService"
},
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"server": "node server.js",
"start": "tsc && concurrently \"tsc -w\" \"nodemon server.js\""
},
"license": "ISC",
"dependencies": {
"@angular/common": "4.3.6",
"@angular/compiler": "4.3.6",
"@angular/core": "11.0.5",
"@angular/forms": "4.3.6",
"@angular/http": "4.3.6",
"@angular/platform-browser": "4.3.6",
"@angular/platform-browser-dynamic": "4.3.6",
"@angular/router": "4.3.6",
"@angular/upgrade": "4.3.6",
"@angular/compiler-cli": "4.3.6",
"@angular/platform-server": "4.3.6",
"@angular/tsc-wrapped": "4.3.6",
"@angular/animations": "4.3.6",
"systemjs": "0.20.18",
"core-js": "2.5.0",
"rxjs": "5.4.3",
"zone.js": "0.8.17",
"express": "^4.17.3",
"pug": "^3.0.1",
"mongoose": "^5.7.5",
"cookie-parser": "^1.4.3",
"body-parser": "^1.17.2",
"express-session": "^1.15.5",
"errorhandler": "^1.5.0",
"csurf": "^1.9.0"
},
"devDependencies": {
"concurrently": "3.5.0",
"lite-server": "2.3.0",
"typescript": "2.4.2",
"@types/node": "8.0.25"
}
}