-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 734 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
{
"name": "todo-api-sequelize",
"version": "1.0.0",
"description": "best task manager api",
"main": "index.js",
"engine": {
"node": "v20.11.1",
"npm": "10.2.4"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"task"
],
"author": "zama",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1",
"mysql2": "^3.11.0",
"sequelize": "^6.37.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"express-routemap": "^1.6.0",
"nodemon": "^2.0.15"
}
}