forked from jsheen/server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.42 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": "upchieve-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node main.js",
"dev": "nodemon main",
"dev:autolint": "nodemon main --exec 'npm run lint && node'",
"test": "nyc ava --verbose",
"lint": "eslint '*.js' '{controllers,models,router,services,seeds}/**/*.js' --fix",
"lint:prod": "eslint '*.js' '{controllers,models,router,services,seeds}/**/*.js' --max-warnings 0"
},
"nyc": {
"check-coverage": true,
"lines": 25,
"extension": [
".js"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@sentry/node": "^5.8.0",
"async": "^1.5.0",
"base64url": "^3.0.1",
"bcrypt": "3.0.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"cli-progress": "^3.0.0",
"connect-busboy": "0.0.2",
"connect-livereload": "^0.5.4",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.3.5",
"cors": "^2.8.1",
"cron": "^1.8.2",
"crypto": "0.0.3",
"csv-parse": "^4.4.6",
"ejs": "^2.6.1",
"eslint-config-prettier": "^6.9.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.16.4",
"express-ejs-layouts": "^2.5.0",
"express-flash": "0.0.2",
"express-session": "^1.14.2",
"jszip": "^3.2.2",
"kerberos": "0.0.24",
"moment-timezone": "^0.5.23",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemailer": "^2.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport.socketio": "^3.7.0",
"prettier": "1.19.1",
"prettier-config-standard": "^1.0.1",
"q": "^1.4.1",
"socket.io": "^2.2.0",
"twilio": "^3.28.1",
"ua-parser-js": "^0.7.21",
"validator": "^6.2.0"
},
"devDependencies": {
"ava": "^1.3.1",
"eslint": "^5.15.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"prettier-standard": "^9.1.1"
},
"eslintConfig": {
"extends": [
"prettier-standard"
],
"rules": {
"handle-callback-err": [
"error",
"^(err|error)$"
],
"no-debugger": "warn"
}
},
"standard": {
"parser": "babel-eslint"
}
}