-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.61 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 4.61 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node dist/server.cjs",
"start:worker": "tsx src/worker.ts",
"dev": "concurrently \"vite\" \"tsx server.ts\"",
"dev:server": "tsx server.ts",
"build": "vite build && node scripts/verify-client-secrets.mjs && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs --log-override:empty-import-meta=silent",
"build:analyze": "vite build --mode analyze",
"analyze": "vite build --mode analyze",
"preview": "vite preview",
"clean": "rm -rf dist",
"migrate": "tsx src/migrations/cli.ts",
"lint": "tsc --noEmit",
"scrape": "tsx scrape-cli.ts",
"test": "vitest",
"test:integration": "vitest --config vitest.integration.config.ts",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"verify:client-secrets": "node scripts/verify-client-secrets.mjs",
"test:client-secrets": "vitest run tests/client-secret-boundary.test.ts",
"audit": "npm audit --omit=dev",
"audit:fix": "npm install --package-lock-only && npm audit",
"prepare": "git config core.hooksPath .githooks"
},
"dependencies": {
"@bull-board/api": "^8.1.2",
"@bull-board/express": "^8.1.2",
"@emailjs/browser": "^4.4.1",
"@google/genai": "^1.52.0",
"@google/generative-ai": "^0.24.1",
"@hello-pangea/dnd": "^18.0.1",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.1.0",
"@sentry/node": "^10.68.0",
"@sentry/react": "^10.67.0",
"@sentry/vite-plugin": "^5.3.0",
"@socket.io/redis-adapter": "^8.3.0",
"@tailwindcss/vite": "^4.1.14",
"@types/multer": "^2.2.0",
"@vitejs/plugin-react": "^5.0.4",
"amqplib": "^2.0.1",
"axios": "^1.20.0",
"bullmq": "^5.80.2",
"cheerio": "^1.2.0",
"cloudinary": "^2.10.0",
"clsx": "^2.1.1",
"concurrently": "^9.2.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.6.1",
"firebase": "^12.16.0",
"firebase-admin": "^14.2.0",
"framer-motion": "^13.1.1",
"gsap": "^3.15.0",
"helmet": "^8.3.0",
"http-proxy-middleware": "^4.0.0",
"idb": "^8.0.3",
"ioredis": "^5.11.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"jsqr": "^1.4.0",
"lucide-react": "^0.546.0",
"meilisearch": "^0.59.0",
"mongodb": "^7.2.0",
"mongoose": "^9.9.4",
"motion": "^12.23.24",
"multer": "^2.2.0",
"nodemailer": "^9.0.3",
"opossum": "^10.0.0",
"pdf-parse": "^2.4.5",
"pino": "^10.3.1",
"playwright": "^1.61.1",
"prom-client": "^15.1.3",
"qrcode.react": "^4.2.0",
"rate-limit-redis": "^5.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.2.8",
"react-markdown": "^10.1.0",
"reactflow": "^11.11.4",
"recharts": "^3.10.1",
"redis": "^6.1.0",
"rss-parser": "^3.13.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"swagger-jsdoc": "^6.3.0",
"swagger-ui-express": "^5.0.1",
"tailwind-merge": "^3.5.0",
"tsx": "^4.21.0",
"vite": "^6.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^5.0.1",
"@opentelemetry/core": "^2.10.0",
"@playwright/test": "^1.61.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/dompurify": "^3.0.5",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.6",
"@types/jsdom": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^22.20.1",
"@types/nodemailer": "^8.0.1",
"@types/opossum": "^8.1.9",
"@types/pdf-parse": "^1.1.5",
"@types/puppeteer": "^5.4.7",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/supertest": "^7.2.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.4.21",
"dompurify": "^3.4.14",
"esbuild": "^0.28.0",
"jsdom": "^29.1.1",
"mongodb-memory-server": "^11.2.0",
"node-fetch": "^3.3.2",
"puppeteer": "^25.9.0",
"rollup-plugin-visualizer": "^5.14.0",
"supertest": "^7.2.2",
"tailwindcss": "^4.1.14",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.10"
},
"overrides": {
"uuid": "^11.1.1",
"protobufjs": "^7.6.0",
"google-gax": "^5.0.4",
"jsonwebtoken": "^9.0.3"
}
}