-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.38 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
{
"name": "epgp-discord",
"version": "1.6.0",
"main": "./app.js",
"license": "UNLICENSED",
"dependencies": {
"connect-nedb-session": "^0.0.3",
"discord.js": "^13.6.0",
"express": "^4.18.2",
"express-handlebars": "^6.0.2",
"express-session": "^1.17.2",
"hbs": "^4.2.0",
"helmet": "^5.1.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"nedb": "^1.8.0",
"request": "^2.88.2",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"scripts": {
"start": "NODE_ENV=production node ./app.js",
"start:dev": "yarn pretty && NODE_ENV=development nodemon ./app.js",
"pretty": "eslint --fix *.js"
},
"devDependencies": {
"eslint": "^5.11.0",
"eslint-plugin-prettier": "^3.0.0",
"nodemon": "^1.18.9",
"prettier": "^1.15.3"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "warn"
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 160,
"endOfLine": "lf"
},
"nodemonConfig": {
"ignore": [
"*.json",
"*.md",
".idea/*"
]
}
}