-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
{
"name": "angular-nodejs-mongodb-customersservice",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"server": "node server.js",
"start": "concurrently \"npm run tsc:w\" \"nodemon server.js\""
},
"dependencies": {
"@angular/animations": "^4.4.6",
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/forms": "^4.4.6",
"@angular/http": "^4.4.6",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@angular/platform-server": "^4.4.6",
"@angular/router": "^4.4.6",
"@angular/tsc-wrapped": "^4.4.6",
"@angular/upgrade": "^4.4.6",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"core-js": "^2.5.1",
"csurf": "^1.9.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"handlebars": "^4.0.11",
"handlebars-helpers": "^0.9.8",
"handlebars-layouts": "^3.1.4",
"hbs": "~4.0.1",
"mongoose": "^4.12.3",
"morgan": "^1.9.0",
"rxjs": "^5.5.0",
"serve-favicon": "^2.4.5",
"systemjs": "^0.20.19",
"zone.js": "^0.8.18"
},
"devDependencies": {
"concurrently": "3.5.0",
"lite-server": "2.3.0",
"typescript": "2.5.3",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"run-sequence": "^2.2.0",
"@types/node": "8.0.46"
}
}