-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "tool-library",
"version": "0.1.0",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"deploy": "pnpm build && wrangler deploy",
"cf-typegen": "wrangler types",
"db:migrate": "tsx scripts/migrate.ts",
"db:migrate:remote": "tsx scripts/migrate.ts --remote",
"db:seed": "tsx scripts/seed-allowlist.ts",
"db:seed:remote": "tsx scripts/seed-allowlist.ts --remote"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@tanstack/react-router": "^1.168.8",
"@tanstack/react-start": "^1.167.13",
"lucide-react": "^0.545.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.30.2",
"@tanstack/devtools-vite": "latest",
"@tanstack/react-devtools": "latest",
"@tanstack/react-router-devtools": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.78.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@parcel/watcher",
"workerd",
"sharp",
"lightningcss"
]
}
}