-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 975 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 975 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
33
34
35
36
37
38
39
{
"name": "express-testing-all",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./src/bin/server.js",
"dev": "nodemon --exec babel-node ./src/bin/server.js",
"build": "babel src -d dist",
"test": "jest --watch"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.1.4",
"express": "^4.21.2",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.8.6",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/node": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"jest": "^29.5.0",
"nodemon": "^3.1.9",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
}
}