-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.87 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "metagame-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"db:migrate": "npx supabase migration up --local && pnpm types:supabase",
"db:migrate:new": "npx supabase migration new",
"db:migrate:prod": "npx supabase link --project-ref fkarmpoupazxnshofaeg && npx supabase db push && pnpm types:supabase:prod",
"db:migrate:sync": "npx supabase db diff --linked --use-migra -f prod_sync && pnpm types:supabase:prod && echo 'Synced prod db with a migration file; rename it.'",
"db:reset": "npx supabase db reset --local && pnpm types:supabase",
"dev": "next dev",
"fmt": "pnpm format",
"fmt:check": "pnpm format:check",
"format": "prettier --write",
"format:check": "prettier --check",
"lint": "next lint",
"prepare": "husky install",
"start": "next start",
"test": "playwright test",
"typecheck": "tsc --noEmit",
"types:supabase": "npx supabase gen types typescript --local --schema public > types/database/supabase.types.ts",
"types:supabase:prod": "npx supabase gen types typescript --project-id fkarmpoupazxnshofaeg --schema public > types/database/supabase.types.ts"
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint --fix --cache --max-warnings=0"
],
"*.{ts,tsx,js,jsx,cjs,mjs,css,md,json,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@fontsource/jura": "^5.2.6",
"@jaredreisinger/react-crossword": "github:briansmiley/react-crossword#dist",
"@nanostores/react": "^1.0.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.8",
"@stripe/react-stripe-js": "^3.7.0",
"@stripe/stripe-js": "^7.4.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.52.1",
"@tanstack/query-async-storage-persister": "^5.85.6",
"@tanstack/react-query": "^5.85.6",
"@tanstack/react-query-persist-client": "^5.85.6",
"@vercel/analytics": "^1.5.0",
"airtable": "^0.12.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"kbar": "0.1.0-beta.45",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"nanostores": "^1.0.1",
"next": "15.3.8",
"next-themes": "^0.4.6",
"opennode": "^1.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"resend": "^4.8.0",
"sonner": "^2.0.6",
"stripe": "^18.3.0",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"zod": "^4.0.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/plugin-kit": "^0.3.4",
"@playwright/test": "^1.54.1",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-query-devtools": "^5.83.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"daisyui": "^5.0.46",
"dotenv": "^17.2.1",
"eslint": "^9.31.0",
"eslint-config-next": "15.3.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^8.0.0",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"sharp": "^0.34.3",
"sort-package-json": "^3.4.0",
"supabase": "^2.39.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}