-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "webdev-backend",
"version": "1.0.0",
"description": "Webdev Studio Entry Task - Backend",
"main": "server.js",
"lint-staged": {
"*.{js}": "prettier --config .prettierrc.json server.js \"src/**/*.js\" --write"
},
"scripts": {
"lint": "lint-staged --allow-empty",
"husky-prepare": "husky install",
"dev": "nodemon server.js",
"start": "node server.js",
"pret": "prettier --config .prettierrc.json server.js \"src/**/*.js\" --write"
},
"author": "Dynamic Energy",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.28.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.2.0",
"husky": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"validator": "^13.7.0"
},
"devDependencies": {
"lint-staged": "^12.2.0",
"prettier": "^2.5.1"
}
}