-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.61 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
{
"name": "voting-app",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": "8.9.3"
},
"scripts": {
"server": "nodemon server.js",
"start": "node server.js",
"build": "ng build",
"build:watch": "ng build --watch --sourcemaps",
"build:prod": "ng build --prod",
"dev": "SET \"NODE_ENV=development\" && npm-run-all --parallel server build:watch eslint:watch",
"test": "ng test",
"mocha": "SET \"NODE_ENV=test\" && mocha",
"tslint": "ng lint --fix",
"eslint": "./node_modules/.bin/eslint api server.js --fix",
"eslint:watch": "esw api server.js --watch",
"deploy": "git push heroku",
"postdeploy": "heroku open",
"kill": "taskkill /f /im node.exe"
},
"dependencies": {
"@angular/animations": "^4.1.3",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"angular2-materialize": "15.1.9",
"angular2-notifications": "0.7.7",
"bcryptjs": "^2.4.3",
"body-parser": "1.18.0",
"chalk": "2.1.0",
"compression": "^1.6.2",
"core-js": "2.5.1",
"express": "^4.15.3",
"express-enforces-ssl": "1.1.0",
"hammerjs": "2.0.8",
"helmet": "3.10.0",
"jquery": "2.2.4",
"jsonwebtoken": "^7.4.1",
"lodash": "4.17.4",
"materialize-css": "0.100.2",
"mongodb": "^2.2.27",
"mongoose": "4.11.11",
"ms": "2.1.1",
"request": "2.81.0",
"rxjs": "^5.1.0",
"web-animations-js": "2.3.1",
"winston": "2.4.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "1.6.6",
"@angular/compiler-cli": "^4.0.0",
"@types/jasmine": "2.5.38",
"@types/lodash": "4.14.74",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"eslint": "4.16.0",
"eslint-config-google": "0.9.1",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-standard": "3.0.1",
"eslint-watch": "3.1.3",
"expect": "21.2.1",
"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",
"mocha": "4.0.1",
"npm-run-all": "^4.0.2",
"supertest": "3.0.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.2.0"
}
}