-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Ancestree-backend",
"version": "1.0.0",
"description": "",
"main": "src",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src",
"dev": "nodemon",
"lint": "eslint . --ext .js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.js' --write"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "ISC",
"homepage": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-fileupload": "^1.4.3",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.6.0",
"fast-two-sms": "^3.0.0",
"firebase": "^10.12.2",
"googleapis": "^133.0.0",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"node-cron": "^3.0.2",
"node-geocoder": "^4.2.0",
"nodemailer": "^6.9.13",
"pdfkit": "^0.13.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8"
}
}