-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "lizz-react-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "vite preview",
"check": "npm run check:types && npm run check:lint",
"check:types": "tsc --noEmit",
"check:lint": "biome check .",
"lint": "biome check .",
"fix": "biome check --write .",
"format": "biome format --write .",
"test:integrations": "npx tsx scripts/test-integrations.ts"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.3.0",
"@supabase/supabase-js": "^2.52.1",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"dotenv": "^17.2.1",
"i18next": "^25.3.2",
"i18next-browser-languagedetector": "^8.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^15.6.1",
"react-router-dom": "^7.1.3",
"zod": "^4.0.10",
"zustand": "^5.0.6"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@tailwindcss/vite": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"daisyui": "^5.0.47",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5",
"vite": "^6.1.3"
}
}