-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.08 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
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"build": "vite build && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
"start": "node dist/server.cjs",
"clean": "rm -rf dist server.js",
"lint": "eslint --ext .ts,.tsx src server.ts",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"test": "vitest run",
"test:coverage": "c8 --reporter=lcov --reporter=text-summary vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@google/genai": "^2.4.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"adm-zip": "^0.5.17",
"axios": "^1.18.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.5.2",
"express-validator": "^7.3.2",
"firebase": "^12.14.0",
"helmet": "^8.2.0",
"http-proxy-middleware": "^3.0.7",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.1",
"react-dom": "^19.0.1",
"react-is": "^19.2.7",
"recharts": "^3.8.1",
"vite": "^6.2.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.6.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jsdom": "^28.0.3",
"@types/node": "^22.14.0",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.1.9",
"autoprefixer": "^10.4.21",
"c8": "^11.0.0",
"esbuild": "^0.25.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^29.1.1",
"prettier": "^3.8.0",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.3",
"vitest": "^1.3.0"
}
}