forked from stirthraj/electricity-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 832 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "jest -i --verbose --coverage --runInBand",
"start": "node index.js",
"dboff": "killall mongod",
"watch": "nodemon index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"connect-busboy": "0.0.2",
"connect-mongo": "^4.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-session": "^1.17.1",
"got": "^11.8.2",
"http-errors": "^1.8.0",
"mongoose": "^5.11.18"
},
"devDependencies": {
"eslint": "^7.21.0",
"jest": "^26.6.3"
}
}