-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 882 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
38
{
"name": "se104_eaterial_be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.6.2",
"nodemailer": "^6.9.7",
"sequelize": "^6.33.0",
"socket.io": "4.7.2",
"ws": "^8.14.2"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "3.1.1",
"sequelize-cli": "^6.6.1",
"supertest": "^6.3.3"
}
}