-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.94 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.94 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
{
"name": "payload-cms-boilerplate",
"version": "1.0.0",
"description": "A blank template to get started with Payload 3.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"build:docker": "dotenv -e .env.docker -- next build",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"payload:docker": "dotenv -e .env.docker -- payload",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"start:docker": "dotenv -e .env.docker -- next start",
"seed": "dotenv -- tsx src/seed.ts",
"seed:docker": "dotenv -e .env.docker -- tsx src/seed.ts",
"format": "prettier --write .",
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
"docker": "docker compose up"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@payloadcms/db-postgres": "3.50.0",
"@payloadcms/live-preview-react": "^3.50.0",
"@payloadcms/next": "3.50.0",
"@payloadcms/payload-cloud": "3.50.0",
"@payloadcms/plugin-redirects": "^3.50.0",
"@payloadcms/plugin-seo": "^3.50.0",
"@payloadcms/richtext-lexical": "3.50.0",
"@payloadcms/storage-s3": "3.50.0",
"@payloadcms/storage-vercel-blob": "3.50.0",
"@payloadcms/ui": "^3.50.0",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^10.0.0",
"graphql": "^16.11.0",
"lucide-react": "^0.474.0",
"next": "16.0.0",
"next-themes": "^0.4.6",
"payload": "3.50.0",
"postcss": "^8.5.6",
"prettier-plugin-tailwindcss": "^0.6.13",
"prism-react-renderer": "^2.4.1",
"radix-ui": "^1.4.2",
"react": "19.1.0",
"react-dom": "19.1.1",
"react-hook-form": "^7.59.0",
"react-wrap-balancer": "^1.1.1",
"sharp": "0.33.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^22.15.34",
"@types/react": "19.0.7",
"@types/react-dom": "19.1.7",
"dotenv-cli": "^10.0.0",
"eslint": "^9.30.0",
"eslint-config-next": "15.3.3",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "5.9.2"
},
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
"packageManager": "[email protected]+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}