-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.88 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
{
"name": "flog",
"version": "1.0.0",
"description": "Webapp to track employees' fitness progress",
"repository": {
"type": "git",
"url": "https://github.com/etousley/flog.git"
},
"author": "etousley",
"main": "app.js",
"license": "MIT",
"scripts": {
"start": "node app.js",
"test": "mocha --reporter spec",
"postinstall": "npm rebuild node-sass",
"eslint": "eslint **/*.js"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"dotenv": "^4.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-status-monitor": "^0.1.5",
"express-validator": "^3.1.2",
"lusca": "^1.4.1",
"moment": "^2.18.1",
"mongoose": "^4.11.0",
"morgan": "^1.7.0",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^3.1.7",
"passport": "0.3.2",
"passport-google-oauth": "^1.0.0",
"pug": "^2.0.0-beta6",
"request": "^2.78.0",
"validator": "^7.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-chai-friendly": "^0.2.0",
"eslint-plugin-import": "^2.1.0",
"mocha": "^3.1.2",
"sinon": "^2.0.0",
"sinon-mongoose": "^1.3.0",
"supertest": "^3.0.0"
},
"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,
"chai-friendly/no-unused-expressions": 2
},
"env": {
"jasmine": true,
"mocha": true,
"node": true
},
"plugins": [
"chai-friendly"
]
}
}