-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.1 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "primalprinting",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build:next",
"build:next": "next build",
"build:headless": "turbo run build:next upload-assets:run",
"install:cached": "turbo run install:run",
"install:run": "pnpm install --frozen-lockfile",
"upload-assets": "turbo run upload-assets:run",
"upload-assets:run": "tsx scripts/upload-assets.mts",
"dev": "next dev",
"start": "next start",
"lint": "turbo run lint:run",
"lint:run": "biome check .",
"typecheck": "turbo run typecheck:run",
"typecheck:run": "tsc -p tsconfig.json --noEmit",
"generate:types": "turbo run generate:types:run",
"generate:types:run": "payload generate:types",
"seed": "tsx seed.ts",
"deploy": "tsx scripts/cloudflare-build.mts",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@auth/mongodb-adapter": "^3.11.2",
"@aws-sdk/client-s3": "^3.1032.0",
"@aws-sdk/s3-request-presigner": "^3.1032.0",
"@chakra-ui/icons": "^2.0.4",
"@chakra-ui/react": "^2.10.9",
"@cloudflare/containers": "^0.3.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@payloadcms/db-mongodb": "^3.83.0",
"@payloadcms/next": "^3.83.0",
"@payloadcms/richtext-lexical": "^3.83.0",
"@payloadcms/storage-s3": "^3.83.0",
"@payloadcms/ui": "^3.83.0",
"@stripe/react-stripe-js": "^6.2.0",
"@stripe/stripe-js": "^9.2.0",
"@tanstack/react-query": "^5.100.1",
"@types/nodemailer": "^8.0.0",
"@types/pug": "^2.0.10",
"fetch-blob": "^4.0.0",
"firebase": "^12.12.0",
"framer-motion": "^6.5.1",
"googleapis": "^171.4.0",
"graphql": "^16.13.2",
"jose": "^6.2.2",
"lexical": "^0.43.0",
"multer": "^2.1.1",
"next": "16.2.4",
"next-auth": "^4.24.14",
"nextjs-google-analytics": "^2.3.7",
"nodemailer": "^8.0.5",
"payload": "^3.83.0",
"pdfjs-dist": "^5.6.205",
"pug": "^3.0.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-messenger-chat-plugin": "^3.0.5",
"stripe": "^12.18.0",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "~2.4.12",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"dotenv": "^17.4.2",
"lefthook": "^2.1.6",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"wrangler": "^4.83.0"
},
"engines": {
"node": ">=20",
"pnpm": "^10.0.0"
},
"//cloudflare-workarounds": "jose is an explicit dep because payload uses it for JWT but pnpm doesn't hoist it. canvas is overridden with a local stub because pdfjs-dist optionally requires it (native addon) which breaks the build. See shims/canvas/index.js for details.",
"packageManager": "pnpm@10.11.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"//overrides": "Needed for Cloudflare Workers deployment. canvas is a native Node.js addon required by pdfjs-dist that breaks esbuild bundling. See shims/canvas/index.js for details. dompurify is overridden to patch CVEs (mutation-XSS / FORBID_TAGS bypass) inside monaco-editor (transitive via @payloadcms/ui).",
"overrides": {
"canvas": "link:./shims/canvas",
"dompurify": ">=3.4.0"
}
}
}