-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.31 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
{
"name": "tanstack-start-i18n-example",
"version": "0.0.1",
"description": "Advanced i18n starter for TanStack Start with URL rewriting and code-first extraction.",
"private": true,
"license": "MIT",
"author": {
"name": "Okan Ay",
"url": "https://github.com/okanay"
},
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"deploy": "bun run clean && bun run vite build && bun run wrangler deploy",
"test": "vitest run",
"i18n": "bun run i18n/index.ts",
"i18n:extract": "bun run i18n/index.ts extract",
"i18n:clean": "bun run i18n/index.ts clean",
"i18n:status": "bun run i18n/index.ts status",
"i18n:translate": "bun run i18n/index.ts translate",
"clean": "rm -rf .output && rm -rf .tanstack && rm -rf .nitro && rm -rf dist",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.22.0",
"@hookform/resolvers": "^5.2.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.9.3",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router": "^1.157.16",
"@tanstack/react-router-devtools": "^1.157.16",
"@tanstack/react-router-ssr-query": "^1.157.16",
"@tanstack/react-start": "^1.157.16",
"@tanstack/router-plugin": "^1.157.16",
"@types/js-cookie": "^3.0.6",
"i18next": "^25.8.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.563.0",
"nitro": "^3.0.1-alpha.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-i18next": "^16.5.4",
"tailwindcss": "^4.1.18",
"vite-tsconfig-paths": "^6.0.5"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.4.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.7",
"@types/node": "^25.0.10",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "1.0.0",
"prettier-plugin-tailwindcss": "0.7.2",
"dotenv": "^17.2.3",
"jsdom": "^27.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"web-vitals": "^5.1.0",
"wrangler": "^4.61.0"
}
}