-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 851 Bytes
/
package.json
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": "backend-node",
"version": "1.0.0",
"description": "backend nodejs",
"main": "server.js",
"scripts": {
"start": "nodemon --exec ./node_modules/.bin/babel-node src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"fullstack",
"nodejs",
"express",
"doan"
],
"author": "TRUONGNGO",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.8",
"sequelize": "^6.21.1",
"sequelize-cli": "^6.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/node": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"nodemon": "^2.0.18"
}
}