This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "synology-remote-downloader",
"version": "1.0.0",
"description": "",
"license": "MIT",
"engines": {
"node": "8.5.0",
"npm": "5.2.0"
},
"scripts": {
"start": "node app.js",
"test": "mocha --reporter spec",
"postinstall": "npm rebuild node-sass",
"eslint": "eslint **/*.js"
},
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.4.0",
"compression": "^1.7.2",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"express-status-monitor": "^1.0.1",
"express-validator": "^4.3.0",
"morgan": "^1.9.0",
"node-sass-middleware": "^0.11.0",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-oauth": "^1.0.0",
"syno": "^2.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.11.0",
"mocha": "^3.5.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,
"chai-friendly/no-unused-expressions": 2
},
"env": {
"jasmine": true,
"mocha": true,
"node": true
},
"plugins": [
"chai-friendly"
]
}
}