-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "opsflow-backend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec tsx src/index.ts",
"build": "npm install --include=dev && tsc",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\""
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^8.0.0",
"axios": "^1.13.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"google-auth-library": "^10.9.0",
"helmet": "^8.2.0",
"jsonwebtoken": "^9.0.3",
"mongoose": "^7.5.0",
"morgan": "^1.11.0",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.7",
"socket.io": "^4.8.3",
"tesseract.js": "^7.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}