-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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
{
"name": "my-code",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run cf-typegen && next dev",
"build": "npm run cf-typegen && next build",
"start": "next start",
"lint": "npm run cf-typegen && next lint",
"tsc": "npm run cf-typegen && tsc",
"format": "prettier --write app/",
"cf-preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview --port 3000",
"cf-deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@fontsource-variable/inconsolata": "^5.2.7",
"@fontsource-variable/noto-sans-jp": "^5.2.6",
"@google/genai": "^1.21.0",
"@opennextjs/cloudflare": "^1.7.1",
"@xterm/addon-fit": "^0.11.0-beta.115",
"@xterm/xterm": "^5.6.0-beta.115",
"ace-builds": "^1.43.2",
"async-mutex": "^0.5.0",
"better-auth": "^1.3.31",
"chalk": "^5.5.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"next": "<15.5",
"pg": "^8.16.3",
"prismjs": "^1.30.0",
"react": "19.1.0",
"react-ace": "^14.0.1",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"swr": "^2.3.6",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.15.5",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"daisyui": "^5.0.50",
"drizzle-kit": "^0.31.5",
"eslint": "^9",
"eslint-config-next": "<15.4",
"prettier": "^3.6.2",
"prisma": "^6.18.0",
"tailwindcss": "^4",
"typescript": "5.9.3",
"wrangler": "^4.27.0"
}
}