-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 KB
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
{
"name": "quora",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write ./src",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:fix",
"npm run format"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"bullmq": "^5.56.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.0.0",
"express": "^5.1.0",
"google-auth-library": "^10.2.1",
"http-status-codes": "^2.3.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.1",
"nodemailer": "^7.0.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.15.15",
"winston": "^3.17.0",
"winston-mongodb": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@eslint/js": "^9.31.0",
"babel-jest": "^30.0.5",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
}
}