-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "core",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:prod": "opennextjs-cloudflare build && node scripts/patch-pg-cloudflare.js",
"deploy:app": "wrangler deploy",
"deploy:worker": "wrangler deploy --config worker/wrangler.jsonc",
"deploy:all": "npm run deploy:app && npm run deploy:worker",
"worker:dev": "wrangler dev --config worker/wrangler.jsonc --persist-to .wrangler/state",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts",
"db:migrate": "npx tsx scripts/migrate.ts",
"migrate:webflow": "npx tsx scripts/migrate-webflow.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.17.1",
"@payloadcms/db-postgres": "^3.79.0",
"@payloadcms/next": "^3.79.0",
"@payloadcms/richtext-lexical": "^3.79.0",
"@payloadcms/storage-s3": "^3.79.0",
"drizzle-orm": "^0.45.1",
"graphql": "^16.13.1",
"gsap": "^3.14.2",
"next": "^15.4.11",
"payload": "^3.79.0",
"pg": "^8.20.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "^15.4.11",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.7.4",
"wrangler": "^4.71.0"
}
}