-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 747 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 747 Bytes
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
{
"name": "supstore",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx mocha tests/**/*.test.js --reporter spec",
"start": "nodemon src/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^7.7.7",
"express-session": "^1.17.3",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.8.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2"
},
"devDependencies": {
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"supertest": "^6.3.2"
}
}