-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 910 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=development node server.js",
"build": "NODE_ENV=production node server.js",
"test": "jest --config=jest.config.js",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"helmet": "^6.0.0",
"mongoose": "^6.6.5",
"passport": "^0.6.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"jest": "^29.2.0",
"mongodb-memory-server": "^8.9.3"
},
"jest": {
"testEnvironment": "node"
}
}