-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.07 KB
/
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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"lint-fix": "(eslint --fix --cache --report-unused-disable-directives . || true) && prettier --write .",
"lint-check": "eslint --cache --report-unused-disable-directives . && prettier --check .",
"prepare": "husky install .husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^11.0.0",
"email-templates": "^9.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"firebase-admin": "^10.1.0",
"mongoose": "^6.1.6",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.6",
"nodemailer": "^6.7.5",
"pug": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}