-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.07 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
{
"name": "tkkr.dev",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"deploy": "vite build && wrangler deploy",
"cf-typegen": "wrangler types",
"urls": "node --env-file-if-exists=.env scripts/urls.ts",
"urls:local": "node --env-file-if-exists=.env scripts/urls.ts --local",
"db:migrate:local": "wrangler d1 migrations apply tkkr-dev-urls --local",
"db:migrate:remote": "wrangler d1 migrations apply tkkr-dev-urls --remote",
"lint": "eslint",
"format": "prettier --write \"**/*.{css,json,jsonc,md,ts,tsx,js,jsx}\"",
"check": "prettier --check \"**/*.{css,json,jsonc,md,ts,tsx,js,jsx}\"",
"typecheck": "tsc --noEmit",
"validate": "pnpm check && pnpm typecheck && pnpm lint && pnpm build"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@fontsource-variable/inter": "^5.3.0",
"@tailwindcss/vite": "^4",
"@tanstack/react-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.32.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"shadcn": "^4.18.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.53.0",
"@tanstack/devtools-vite": "latest",
"@tanstack/eslint-config": "latest",
"@types/node": "^22",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^9",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"typescript": "^6",
"vite": "^8.2.1",
"wrangler": "^4.124.0"
}
}