-
-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.72 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
{
"name": "git-city",
"version": "0.1.0",
"private": true,
"description": "Your GitHub profile as a 3D pixel art building in an interactive city",
"homepage": "https://thegitcity.com",
"repository": {
"type": "git",
"url": "https://github.com/srizzon/git-city"
},
"author": "Samuel Rizzon",
"license": "AGPL-3.0",
"keywords": [
"github",
"3d",
"visualization",
"three-js",
"pixel-art",
"react",
"nextjs"
],
"scripts": {
"dev": "next dev -p 3001 --webpack",
"dev:portless": "portless run next dev --webpack",
"dev:portless:prod": "portless run dotenv -e .env.prod -- next dev --webpack",
"dev:prod": "dotenv -e .env.prod -- next dev -p 3001 --webpack",
"dev:staging": "dotenv -e .env.dev -- next dev -p 3001 --webpack",
"build": "next build --webpack",
"start": "next start",
"db:up": "supabase migration up",
"db:reset": "supabase db reset",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@pmndrs/detect-gpu": "^6.0.8",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@reown/appkit": "^1.8.19",
"@reown/appkit-adapter-wagmi": "^1.8.19",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.97.0",
"@tanstack/react-query": "^5.100.5",
"@tiptap/extension-link": "^3.20.5",
"@tiptap/extension-placeholder": "^3.20.5",
"@tiptap/pm": "^3.20.5",
"@tiptap/react": "^3.20.5",
"@tiptap/starter-kit": "^3.20.5",
"@types/three": "^0.183.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"glin-profanity": "^3.3.0",
"howler": "^2.2.4",
"isomorphic-dompurify": "^3.7.1",
"lucide-react": "^0.577.0",
"next": "16.2.3",
"partykit": "^0.0.115",
"partysocket": "^1.1.16",
"posthog-js": "^1.386.8",
"posthog-node": "^5.37.1",
"postprocessing": "^6.38.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"resend": "^6.9.3",
"server-only": "^0.0.1",
"stripe": "^20.3.1",
"svix": "^1.89.0",
"three": "^0.183.0",
"viem": "^2.48.4",
"wagmi": "^2.19.5"
},
"overrides": {
"@wagmi/core": "^2.22.1",
"@wagmi/connectors": "^6.2.0"
},
"devDependencies": {
"@napi-rs/canvas": "^0.1.97",
"@tailwindcss/postcss": "^4",
"@types/howler": "^2.2.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/webpack": "^5.28.5",
"dotenv-cli": "^11.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"portless": "^0.15.1",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}