-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 884 Bytes
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
{
"name": "paperstack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"cf:build": "opennextjs-cloudflare build",
"preview": "npm run cf:build && opennextjs-cloudflare preview",
"deploy": "npm run cf:build && opennextjs-cloudflare deploy",
"type-check": "tsc --noEmit",
"cf-typegen": "wrangler types --env-interface PaperstackEnv cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "1.17.3",
"@types/three": "^0.184.0",
"next": "^15.1.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.184.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250214.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"chalk": "4.1.2",
"typescript": "^5.7.0",
"wrangler": "^4.0.0"
}
}