-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.45 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.45 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "backend",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node src/index.mjs",
"start:dev": "nodemon src/index.mjs",
"lint": "eslint .",
"tailwind:build": "npx @tailwindcss/cli -i src/api/v1/Email/css/input.css -o src/api/v1/Email/css/output.css --watch",
"@eslint/config-inspector": "npx @eslint/config-inspector@latest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"genKey": "node src/script/genKey.mjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch"
},
"dependencies": {
"@google/genai": "^1.13.0",
"@google/generative-ai": "^0.24.1",
"@tailwindcss/cli": "4.1.1",
"bcryptjs": "2.4.3",
"body-parser": "1.20.3",
"cashfree-pg": "^5.0.8",
"cloudinary": "2.5.1",
"cookie": "^1.0.2",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"debug": "2.6.9",
"dotenv": "16.4.5",
"express": "4.21.2",
"express-rate-limit": "7.4.1",
"express-session": "1.18.1",
"google-auth-library": "9.14.2",
"googleapis": "144.0.0",
"http-errors": "1.6.3",
"i": "0.3.7",
"ioredis": "^5.6.1",
"joi": "17.13.3",
"jsonwebtoken": "9.0.2",
"lolcatjs": "2.4.3",
"mongoose": "^8.12.1",
"multer": "1.4.5-lts.2",
"node-cron": "3.0.3",
"nodemailer": "^6.9.15",
"npm": "10.8.3",
"otp-generation": "1.0.5",
"pino": "9.4.0",
"pino-http": "10.3.0",
"pino-pretty": "11.2.2",
"razorpay": "2.9.5",
"socket.io": "^4.8.1",
"swagger-ui-express": "5.0.1",
"tailwindcss": "^4.1.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@eslint/js": "9.12.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.11.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "3.3.3",
"swagger-autogen": "2.23.7"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"mjs"
],
"testMatch": [
"**/__tests__/**/*.test.mjs"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.mjs$": "$1"
}
},
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher",
"@scarf/scarf",
"sleep"
]
}
}