-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"private": true,
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "next lint --fix",
"pages:setup": "npx @cloudflare/next-on-pages",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:preview": "wrangler pages dev",
"supabase:types": ". ./.env && supabase gen types typescript --project-id $NEXT_PUBLIC_SUPABASE_PROJECT_ID > types/database.types.ts"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.13.0",
"@fontsource/lobster": "^5.1.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@giscus/react": "^3.1.0",
"@monaco-editor/react": "^4.4.5",
"@mui/icons-material": "^5.16.14",
"@mui/lab": "^5.0.0-alpha.175",
"@mui/material": "^5.16.14",
"@mui/utils": "^6.4.2",
"@react-hook/resize-observer": "^2.0.2",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"async-mutex": "^0.5.0",
"firacode": "^6.2.0",
"jotai": "^2.10.4",
"jotai-game": "^0.2.0",
"monaco-editor": "^0.52.2",
"next": "^15.1.6",
"next-navigation-guard": "^0.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.5",
"sharp": "^0.33.5",
"use-animation-frame": "^0.2.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.7",
"@types/node": "^22.13.1",
"@types/react": "^18.3.12",
"@webgpu/types": "^0.1.54",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"prettier-plugin-organize-imports": "^4.1.0",
"supabase": "^2.9.6",
"typescript": "^5.7.3",
"vercel": "^40.1.0",
"wrangler": "^3.107.2"
}
}