-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 891 Bytes
/
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
{
"name": "rpg-website",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "set DEBUG=* & nodemon app.js",
"test": "mocha tests/**/*Tests.js",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"mongoose": "^5.9.9",
"morgan": "^1.10.0",
"nodemon": "^2.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.1",
"should": "^13.2.3",
"sinon": "^9.0.2",
"supertest": "^4.0.2"
},
"nodemonConfg": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_modules"
],
"delay": "2500",
"env": {
"NODE_ENV": "development",
"PORT": 4020
}
}
}