-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.34 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
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:server": "tsx src/server/server.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\"",
"build": "vite build",
"preview": "vite preview",
"start": "node --experimental-strip-types server.ts",
"clean": "rm -rf dist",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"test": "vitest",
"migrate:members-to-profiles": "npx tsx scripts/migrate-members-to-profiles.ts",
"precommit": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"@google/genai": "^1.29.0",
"@tailwindcss/vite": "^4.1.14",
"@tanstack/react-query": "^5.100.14",
"@tanstack/react-virtual": "^3.14.2",
"@vitejs/plugin-react": "^5.0.4",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"express-rate-limit": "^8.5.2",
"firebase": "^12.12.1",
"firebase-admin": "^13.8.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"nodemailer": "^9.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.14.2",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.100.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"autoprefixer": "^10.4.21",
"concurrently": "^10.0.3",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.8"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}