-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 993 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 993 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
{
"name": "petstore",
"version": "1.0.0",
"description": "ecommerse site",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"dev": "SET NODE_ENV=DEVELOPMENT& nodemon backend/server",
"prod": "SET NODE_ENV=PRODUCTION& nodemon backend/server",
"test": "cross-env NODE_ENV=test jest --testTimeout=5000"
},
"author": "Akshaya",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "1.27.1",
"cloudinary-core": "^2.13.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.5.4",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"redis": "^4.6.5",
"stripe": "^8.128.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.0.1",
"swagger-ui-express": "^4.6.2"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.20"
}
}