-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.74 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "memo-re",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"build": "ng build",
"startProd": "ng build --prod set NODE_ENV=production && node server/app.js",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"list": "ntl",
"dev": "nodemon server/app.js",
"startClient": "ng serve –proxy-config proxy.conf.json",
"start": "node server/app.js",
"startServerProduction": "ng build && node server/app.js",
"postinstall": "ng build --prod"
},
"engines": {
"node": "6.10.0",
"npm": "4.3.0"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.4.0-RC.0",
"@angular/cdk": "2.0.0-beta.10",
"@angular/cli": "^1.3.2",
"@angular/common": "4.4.0-RC.0",
"@angular/compiler": "4.4.0-RC.0",
"@angular/compiler-cli": "4.4.0-RC.0",
"@angular/core": "4.4.0-RC.0",
"@angular/forms": "4.4.0-RC.0",
"@angular/http": "4.4.0-RC.0",
"@angular/material": "2.0.0-beta.10",
"@angular/platform-browser": "4.4.0-RC.0",
"@angular/platform-browser-dynamic": "4.4.0-RC.0",
"@angular/router": "4.4.0-RC.0",
"@types/hammerjs": "2.0.35",
"@types/jasmine": "2.5.54",
"@types/node": "8.0.26",
"angular2-jwt": "0.2.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"composable-middleware": "0.3.0",
"compression": "1.6.2",
"cookie-parser": "1.4.3",
"core-js": "2.4.1",
"cross-env": "3.2.3",
"ejs": "2.5.6",
"errorhandler": "1.5.0",
"express-jwt": "5.1.0",
"express-session": "^1.15.5",
"fast-json-patch": "1.1.8",
"font-awesome": "^4.7.0",
"gravatar": "1.6.0",
"hammerjs": "2.0.8",
"jsonwebtoken": "7.3.0",
"lodash": "4.17.4",
"method-override": "^2.3.7",
"mongodb": "2.2.31",
"mongoose": "4.11.10",
"morgan": "1.8.1",
"multer": "^1.3.0",
"ngx-chips": "1.5.3",
"nodemailer": "^4.1.0",
"oauth2-server": "^3.0.0",
"oauth2orize": "^1.10.0",
"passport": "0.3.2",
"passport-google-oauth": "1.0.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "1.0.0",
"path": "0.12.7",
"rxjs": "5.4.3",
"serve-favicon": "^2.4.1",
"typescript": "2.5.2",
"zone.js": "0.8.17"
},
"devDependencies": {
"codelyzer": "2.0.0",
"connect-livereload": "0.6.0",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "3.2.0",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "0.2.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"method-override": "2.3.7",
"nodemon": "1.11.0",
"ntl": "1.2.0",
"protractor": "5.1.0",
"ts-node": "2.0.0",
"tslint": "4.4.2"
}
}