-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 922 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
39
40
{
"name": "vidly",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"seed": "node seed.js",
"test": "jest --watchAll --runInBand --verbose",
"watch": "nodemon server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"config": "^3.3.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^7.0.0",
"joi": "^17.2.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.27.0",
"mongoose": "^6.11.2",
"winston": "^3.10.0",
"winston-mongodb": "^5.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"jest": "^26.1.2",
"nodemon": "^2.0.22",
"supertest": "^4.0.2"
}
}