-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "uddeshhya",
"version": "1.0.0",
"description": "Backend for web portal of Uddeshhya consisting of Admin Portal for managing users, teams, projects, a blood donation portal and a money donation system with online payment.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"lint": "prettier \"**/*.{js, jsx, json, md, html, css, yml}\" --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/dsckiet/uddeshhya_backend"
},
"bugs": {
"url": "https://github.com/dsckiet/uddeshhya_backend/issues"
},
"homepage": "https://www.uddeshhya.org/",
"keywords": [
"uddeshhya",
"portal",
"blood-donation-portal",
"management",
"money-donation-portal"
],
"author": {
"name": "Developer Student Clubs KIET",
"email": "[email protected]",
"url": "https://dsckiet.com"
},
"contributors": [
{
"name": "Ritik Srivastava",
"email": "[email protected]",
"url": "https://ritiksr25.tech"
},
{
"name": "Rohan Mehta",
"email": "[email protected]",
"url": "https://rhnmht30.dev"
},
{
"name": "Aakash Goel",
"email": "[email protected]",
"url": "https://goelaakash79.github.io"
}
],
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chalk": "^4.1.0",
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"mongoose": "^5.4.21",
"multer": "^1.4.2",
"nodemon": "^1.19.1",
"razorpay": "^2.0.5",
"sharp": "^0.27.0"
},
"devDependencies": {
"husky": "4.3.0",
"lint-staged": "10.4.2",
"prettier": "^2.1.2"
},
"lint-staged": {
"*.{js, jsx, json, md, html, css, yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}