-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "backend",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/SEM5-MiniProject/Backend.git",
"author": "SalmanAd01 <salmanadhikari415@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node server.js",
"dev": "nodemon --legacy-watch server.js -e js,html,hbs",
"lint": "eslint --plugin markdown --ext js,md .",
"fix": "eslint --fix --plugin markdown --ext js,md .",
"prepare": "husky install",
"test": "jest --testTimeout=10000"
},
"dependencies": {
"@adminjs/express": "^5.0.0",
"@adminjs/mongoose": "^3.0.0",
"adminjs": "^6.1.6",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dayjs": "^1.11.6",
"dotenv": "^16.0.2",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"firebase": "^9.12.1",
"firebase-admin": "^11.2.0",
"get-intrinsic": "^1.1.3",
"handlebars": "^4.7.7",
"hbs": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"mongoose-unique-validator": "^3.1.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^3.3.2",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1",
"razorpay": "^2.8.3",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"tslib": "^2.4.0",
"uuid": "3.4.0",
"validator": "^13.7.0",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-cli": "^1.1.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && yarn run fix && git add ."
}
},
"engines": {
"node": "16.x"
}
}