-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 974 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 974 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
36
37
{
"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",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"multer": "^1.4.4",
"path": "^0.12.7",
"validator": "^13.7.0"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}