-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "odinbook-api",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=16.13.2"
},
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=odinbook-api:* npm run devstart",
"test": "export NODE_ENV=TEST && jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.1",
"nodemon": "^2.0.21",
"supertest": "^6.3.3",
"supertest-session": "^4.1.0"
}
}