-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "biome format . --write",
"lint": "biome lint .",
"fix": "biome check --apply .",
"fix-unsafe": "biome check --apply-unsafe .",
"update-types": "supabase gen types typescript --local --schema public > utils/supabase/types.ts",
"test": "bunx playwright test",
"format:zed": "biome format"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@primer/octicons-react": "^19.12.0",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@uidotdev/usehooks": "^2.4.1",
"autoprefixer": "10.4.15",
"caniuse-lite": "^1.0.30001680",
"daisyui": "^4.12.14",
"formik": "^2.4.6",
"geist": "^1.3.1",
"next": "latest",
"p-debounce": "^4.0.0",
"papaparse": "^5.4.1",
"postcss": "^8.4.49",
"qrcode.react": "^3.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.3",
"usehooks-ts": "^2.16.0"
},
"devDependencies": {
"@biomejs/biome": "1.4.1",
"@playwright/test": "^1.48.2",
"@types/node": "20.3.1",
"@types/papaparse": "^5.3.15",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.5",
"dotenv": "^16.4.5",
"encoding": "^0.1.13"
}
}