forked from AltSchool-Nodejs/pizza_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 690 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 690 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
{
"name": "pizza_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"start:dev": "nodemon app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"jest": "^29.2.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongodb-memory-server": "^8.9.3",
"mongoose": "^6.6.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"supertest": "^6.3.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}