-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
40
41
42
43
44
45
46
47
48
{
"name": "vend-backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "set NODE_ENV=production && node src/index.js",
"prepare": "husky install",
"fix-code": "prettier-eslint --write 'src/**/*.js'",
"prettier": "prettier --write .",
"lint": "eslint src/**/*.js",
"format": "eslint src/**/*.js --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.7.0",
"nodemailer": "^6.9.8",
"nodemon": "^3.0.2",
"sequelize": "^6.35.2",
"sequelize-cli": "^6.6.2",
"treblle": "^1.3.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^8.0.3",
"prettier-eslint": "^16.2.0",
"prettier-eslint-cli": "^8.0.1",
"prettier-stylelint": "^0.4.2"
}
}