-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "codex-getting-started-tutorial",
"version": "1.0.0",
"private": true,
"license": "MIT",
"description": "Beginner-friendly Codex desktop tutorial site for non-developers (Windows & macOS)",
"scripts": {
"dev": "next dev",
"build:next": "next build",
"build": "npm run build:next && opennextjs-cloudflare build --skipNextBuild",
"start": "next start",
"test": "vitest run",
"lint": "eslint .",
"prompt:stats": "node scripts/prompt-stats.mjs",
"deploy": "npm run build && opennextjs-cloudflare deploy",
"preview": "npm run build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types"
},
"overrides": {
"postcss": "8.5.14"
},
"dependencies": {
"clsx": "2.1.1",
"next": "^15.5.18",
"react": "19.0.0",
"react-dom": "19.0.0",
"tailwind-merge": "2.5.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@opennextjs/cloudflare": "^1.19.8",
"@types/node": "^22.16.0",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"autoprefixer": "10.4.20",
"esbuild": "^0.28.0",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.18",
"postcss": "8.5.14",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vitest": "^4.1.5",
"wrangler": "^4.86.0"
}
}