-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "runpaceflow",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.1",
"scripts": {
"build": "next build",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run src/lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"dev": "next dev",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"lint": "eslint --fix",
"prepare": "simple-git-hooks",
"start": "next start",
"sync": "bun run scripts/sync.ts",
"type-check": "tsc --noEmit",
"postinstall": "patch-package"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@libsql/client": "^0.15.15",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-query": "^5.62.12",
"@tanstack/react-virtual": "^3.13.19",
"@trpc/client": "^11.0.0",
"@trpc/react-query": "^11.0.0",
"@trpc/server": "^11.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.38.4",
"fast-xml-parser": "^5.3.1",
"framer-motion": "^12.0.0",
"jotai": "^2.10.5",
"lucide-react": "^0.469.0",
"maplibre-gl": "^5.0.1",
"nanoid": "^5.1.6",
"next": "16.1.0-canary.34",
"openai": "^6.18.0",
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1",
"react-map-gl": "^8.1.0",
"react-markdown": "^10.1.0",
"recharts": "^3.3.0",
"remark-gfm": "^4.0.1",
"superjson": "^2.2.5",
"tailwind-merge": "^3.3.1",
"tailwindcss-uikit-colors": "^1.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^22.10.2",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.2",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.18.0",
"eslint-config-hyoban": "^4.0.10",
"lint-staged": "^16.0.2",
"patch-package": "^8.0.1",
"playwright": "^1.58.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.0.0",
"tsx": "^4.20.6",
"typescript": "^5.7.2"
},
"simple-git-hooks": {
"pre-commit": "bun run lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}