-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
82 lines (81 loc) · 1.95 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
{
"name": "truman",
"version": "1.0.0",
"description": "Base version of the Truman Platform",
"repository": {
"type": "git",
"url": "https://github.com/difrad/truman"
},
"author": "Dominic DiFranzo",
"license": "MIT",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "mocha --reporter spec"
},
"dependencies": {
"async": "^2.6.2",
"@node-rs/bcrypt": "^1.6.0",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"clockwork": "^0.1.4",
"compression": "^1.7.4",
"connect-mongo": "^3.0.0",
"csv-write-stream": "^2.0.0",
"csvtojson": "^2.0.8",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.16.2",
"express-status-monitor": "^1.2.6",
"express-validator": "^5.3.1",
"gulp": "^4.0.2",
"jshint": "^2.10.2",
"lob": "^3.9.0",
"lodash": "^4.17.13",
"lusca": "^1.6.1",
"moment": "^2.24.0",
"mongoose": "^5.6.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"node-schedule": "^1.3.2",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "^2.0.4",
"request": "^2.88.0",
"ua-parser-js": "^0.7.20",
"useragent": "^2.3.0",
"validator": "^11.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"sinon": "^2.4.1",
"sinon-mongoose": "^1.3.0",
"supertest": "^3.4.2"
},
"engines": {
"node": ">=8.16.0",
"npm": ">=6.4.1"
},
"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
}
}
}