-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.76 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
{
"name": "wakaba",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "panda codegen",
"dev": "dotenvx run -- bun vite",
"dev:workers": "dotenvx run -- wrangler pages dev --ip 127.0.0.1 --port 5173 -- bun run dev",
"build": "dotenvx run -f .env -f .env.production --overload -- bun run test && vite build && bunx cpx wrangler.toml dist/ && bunx cpx \"functions/**\" dist/functions",
"preview": "vite preview",
"test": "bun tsr generate && bun tsc -b && bun typo && prettier --check ./src/ ./functions/ --check && eslint --ext .ts,.tsx ./src ./functions/ ",
"fmt": "prettier --write ./src/",
"lint": "eslint --ext .ts,.tsx ./src",
"typo": "cspell \"./src/**\" \"./functions/**\" --gitignore",
"setup-init": "bun supabase login && bun supabase:link && bun supabase db pull",
"setup": "bun supabase:start && bun supabase db reset && bun supabase:gen-type",
"supabase": "dotenvx run -- supabase",
"supabase:link": "dotenvx run -- bun run ./scripts/supabase-link.ts",
"supabase:start": "bun supabase start -x imgproxy,inbucket,pgadmin-schema-diff,edge-runtime,logflare,vector,pgbouncer",
"supabase:seed": "bun supabase db dump --local --data-only -f ./supabase/seed.sql",
"supabase:gen-type": "bunx supabase gen types typescript --local > ./src/types/supabase.gen.ts",
"deps": "bun depcruise src --include-only \"^src\" --output-type dot > deps.dot"
},
"dependencies": {
"@ark-ui/react": "^3.12.0",
"@dotenvx/dotenvx": "^1.14.0",
"@fontsource-variable/inter": "^5.1.0",
"@fontsource-variable/jetbrains-mono": "^5.1.0",
"@fontsource-variable/noto-sans-jp": "^5.1.0",
"@google/generative-ai": "^0.19.0",
"@hookform/resolvers": "^3.9.0",
"@iconify/react": "^5.0.2",
"@lottiefiles/react-lottie-player": "^3.5.4",
"@supabase/supabase-js": "^2.45.4",
"@types/leaflet": "^1.9.12",
"envsafe": "^2.0.3",
"i18next": "^23.15.1",
"jotai": "^2.9.3",
"leaflet": "^1.9.4",
"neverthrow": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.53.0",
"react-intersection-observer": "^9.13.1",
"react-leaflet": "^4.2.1",
"swiper": "^11.1.14",
"swr": "^2.2.5",
"ts-pattern": "^5.3.1",
"vaul": "^1.1.1",
"zod": "^3.23.8",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240919.0",
"@eslint/js": "^9.9.0",
"@pandacss/dev": "^0.46.0",
"@pandacss/eslint-plugin": "^0.1.11",
"@tanstack/router-cli": "^1.58.1",
"@tanstack/router-devtools": "^1.57.10",
"@tanstack/router-plugin": "^1.57.9",
"@tsconfig/strictest": "^2.0.5",
"@tsconfig/vite-react": "^3.0.2",
"@types/bun": "^1.1.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"cspell": "^8.14.2",
"dependency-cruiser": "^16.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-unused-imports": "^3.1.0",
"globals": "^15.9.0",
"pandacss-animate": "^1.1.0",
"supabase": "^1.192.5",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1",
"vite-tsconfig-paths": "^5.0.1",
"wrangler": "^3.78.7"
}
}