-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "schedule",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "bun run build && vite preview",
"test": "tsc --noEmit && bun test",
"deploy": "bun run build && wrangler deploy",
"cf-typegen": "wrangler types",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply schedule --local",
"db:migrate:remote": "wrangler d1 migrations apply schedule --remote"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.42.3",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-devtools": "^0.7.11",
"@tanstack/react-router": "^1.170.16",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.26",
"@tanstack/router-plugin": "^1.168.18",
"daleui": "^1.1.1",
"dayjs": "^1.11.21",
"drizzle-orm": "^0.45.2",
"lucide-react": "^0.575.0",
"nanoid": "^5.1.16",
"pretendard": "^1.3.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.1"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.3.12",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"drizzle-kit": "^0.31.10",
"jsdom": "^27.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.6",
"wrangler": "^4.105.0"
}
}