-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "milan-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon index.js",
"dev": "nodemon index.js",
"prepare": "husky install"
},
"author": "Tamal Das",
"license": "ISC",
"dependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@geoapify/geocoder-autocomplete": "^1.5.1",
"@geoapify/react-geocoder-autocomplete": "^1.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.17.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.5.2",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"razorpay": "^2.8.3",
"shortid": "^2.2.16",
"swagger-jsdoc": "^6.2.8",
"swagger-ui": "^5.1.3",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"eslint": "^8.50.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"prettier": "^3.0.1",
"sass": "^1.70.0",
"semantic-release": "^21.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}