-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 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
61
62
{
"name": "testdog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "cross-env NODE_ENV=testing jest",
"prepare": "test \"$NODE_ENV\" != \"production\" && husky install || exit 0",
"start": "NODE_ENV=production node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"bcryptjs": "^3.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"googleapis": "^150.0.1",
"gravatar": "^1.8.2",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"libphonenumber-js": "^1.12.9",
"mongoose": "^8.15.1",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"rate-limit-redis": "^4.2.1",
"razorpay": "^2.9.6",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "^9.28.0",
"babel-jest": "^30.0.0-beta.3",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.4",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"supertest": "^7.1.1"
}
}