This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "reporter-dashboard",
"version": "0.0.0",
"description": "A dashboard for your Reporter App data",
"repository": {
"type": "git",
"url": "https://github.com/jasonbernert/reporter-dashboard.git"
},
"author": "Jason Bernert",
"license": "BSD-3-Clause",
"scripts": {
"start": "nodemon app.js",
"file-import": "node ./data/load-data",
"dropbox-import": "node ./data/dropbox-load",
"delete-data": "node ./data/load-data --delete"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.4.7",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.7.3",
"connect-mongo": "^2.0.1",
"d3": "^5.5.0",
"dotenv": "^6.0.0",
"dropbox": "^4.0.9",
"errorhandler": "^1.4.3",
"express": "^4.16.3",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-status-monitor": "^1.1.5",
"express-validator": "^5.3.0",
"jsdom": "^11.12.0",
"lusca": "^1.6.1",
"moment": "^2.22.2",
"mongoose": "^5.2.7",
"morgan": "^1.7.0",
"node-sass-middleware": "^0.11.0",
"passport": "0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pug": "^2.0.3",
"request": "^2.88.0",
"validator": "^10.5.0"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.18.3"
},
"eslintConfig": {
"extends": "airbnb-base",
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-shadow": 0,
"no-console": 0,
"no-plusplus": 0,
"no-unused-expressions": 0
},
"env": {
"node": true
}
}
}