-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"name": "my-code",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run cf-typegen && next dev --turbopack",
"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",
"cf-deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@opennextjs/cloudflare": "^1.6.3",
"@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",
"chalk": "^5.5.0",
"clsx": "^2.1.1",
"next": "<15.4",
"prismjs": "^1.30.0",
"pyodide": "^0.28.1",
"react": "19.1.0",
"react-ace": "^14.0.1",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"swr": "^2.3.6",
"zod": "^4.0.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/prismjs": "^1.26.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"daisyui": "^5.0.50",
"eslint": "^9",
"eslint-config-next": "<15.4",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "^4.27.0"
}
}