-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "gameigo",
"version": "2.0.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true pnpm build",
"build": "next build",
"check-format": "pnpm prettier --list-different",
"check-types": "tsc",
"dev": "next dev",
"format": "pnpm prettier --write",
"lint": "next lint",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"serve": "pnpm build && pnpm start",
"start": "next start",
"validate": "pnpm check-types && pnpm check-format && pnpm lint && pnpm build"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/themes": "^3.1.5",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.8",
"next": "^15.1.0",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.4.1",
"react-photo-view": "^1.2.6",
"valibot": "^0.42.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.0",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@unocss/postcss": "^0.65.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"unocss": "^0.65.1"
}
}