-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.55 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": "bsod-minidump-analyzer",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "node server.js",
"dev:frontend": "vite",
"build": "vite build && node scripts/generate-sri.js",
"build:no-sri": "vite build",
"preview": "vite preview",
"start": "NODE_ENV=production node server.js",
"analyze-css": "node scripts/purge-css.js",
"optimize-css": "node scripts/purge-css.js --apply"
},
"dependencies": {
"@google/genai": "^1.50.1",
"@upstash/redis": "^1.37.0",
"compression": "^1.8.1",
"concurrently": "^9.2.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"form-data": "^4.0.5",
"jszip": "^3.10.1",
"multer": "^2.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.0",
"remark-gfm": "^4.0.1",
"xxhash-wasm": "^1.1.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^8.0.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.9",
"purgecss": "^8.0.0",
"tailwindcss": "^4.2.2",
"terser": "^5.46.1",
"typescript": "^6.0.3",
"vite": "^8.0.8"
},
"overrides": {
"picomatch": "^4"
}
}