-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 987 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 987 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
39
{
"name": "user-management-service",
"version": "1.0.0",
"description": "User Management Microservice with Express, MySQL, and JWT",
"main": "./bin/www",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest",
"migrate": "sequelize-cli db:migrate",
"migrate:undo": "sequelize-cli db:migrate:undo",
"seed": "sequelize-cli db:seed:all"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.6.0",
"nodemailer": "^7.0.6",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.1",
"winston": "^3.8.2"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=14.0.0"
}
}