-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "store-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=development nodemon app.js",
"prod": "NODE_ENV=production nodemon app.js",
"import-products": " node data/import.js -products -i",
"delete-products": " node data/import.js -products -d",
"import-orders": " node data/import.js -orders -i",
"delete-orders": " node data/import.js -orders -d"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.15",
"uuid": "^10.0.0"
},
"devDependencies": {
"nodemon": "^3.1.4"
}
}