-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 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
{
"name": "bourses",
"version": "0.0.1",
"main": "server/app.js",
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"archiver": "^2.1.0",
"async": "^2.6.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"composable-middleware": "0.3.0",
"compression": "^1.7.1",
"connect-mongo": "^2.0.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.7",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-jwt": "^5.3.0",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.1.0",
"kerberos": "0.0.23",
"lodash": "^4.17.4",
"method-override": "^2.3.10",
"moment": "^2.19.3",
"mongoose": "^4.13.6",
"mustache": "^2.3.0",
"nodemailer": "^4.4.0",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.4.0",
"request": "^2.83.0",
"serve-favicon": "^2.4.5",
"shortid": "^2.2.8",
"superagent": "^3.8.1",
"svair-api": "0.5.4",
"tmp": "0.0.33",
"wkhtmltopdf": "^0.3.4"
},
"devDependencies": {
"chai": "^4.1.2",
"connect-livereload": "^0.6.0",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "^1.0.1",
"grunt-angular-templates": "^1.1.0",
"grunt-autoprefixer": "^3.0.4",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-htmlmin": "^2.4.0",
"grunt-contrib-imagemin": "^2.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^3.2.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-express-server": "*",
"grunt-injector": "^1.1.0",
"grunt-newer": "^1.3.0",
"grunt-ng-annotate": "^3.0.0",
"grunt-open": "^0.2.3",
"grunt-rev": "^0.1.0",
"grunt-usemin": "^3.1.1",
"iconv-lite": "^0.4.19",
"jasmine-core": "*",
"jit-grunt": "^0.10.0",
"load-grunt-config": "^0.19.2",
"mocha": "^4.0.1",
"open": "0.0.5",
"requirejs": "^2.3.5",
"should": "^13.1.3",
"time-grunt": "^1.4.0"
},
"engines": {
"node": ">=6.9.5"
},
"scripts": {
"start": "node server/app.js",
"build": "npm run test && grunt build",
"dev": "grunt serve",
"test": "npm run lint && npm run mocha",
"lint": "eslint client server",
"mocha": "NODE_ENV=test mocha --reporter spec 'server/**/*.spec.js'"
},
"private": true
}