-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 727 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 727 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
{
"name": "order-processing-system",
"version": "1.0.0",
"description": "Order processing system nodejs API",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "Sasanka Deshapriya",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fastest-validator": "^1.17.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.9.4",
"nodemailer": "^6.9.12",
"nodemon": "^3.1.0",
"otp-generator": "^4.0.1",
"sequelize": "^6.37.1"
},
"devDependencies": {
"sequelize-cli": "^6.6.2"
}
}