-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.68 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.68 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
94
95
96
97
98
99
100
101
{
"name": "website-v2",
"version": "1.0.0",
"description": "Website template for Payload",
"license": "MIT",
"type": "module",
"scripts": {
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"dev:prod": "cross-env NODE_OPTIONS=--no-deprecation rm -rf .next && pnpm build && pnpm start",
"generate": "payload generate:db-schema",
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
"ii": "cross-env NODE_OPTIONS=--no-deprecation pnpm --ignore-workspace install",
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
"lint:fix": "cross-env NODE_OPTIONS=--no-deprecation next lint --fix",
"migrate:create": "cross-env NODE_OPTIONS=--no-deprecation payload migrate:create",
"migrate:status": "cross-env NODE_OPTIONS=--no-deprecation payload migrate:status",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"reinstall": "cross-env NODE_OPTIONS=--no-deprecation rm -rf node_modules && rm pnpm-lock.yaml && pnpm --ignore-workspace install",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"ci": "payload migrate && pnpm build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.812.0",
"@aws-sdk/lib-storage": "^3.812.0",
"@payloadcms/admin-bar": "3.38.0",
"@payloadcms/db-postgres": "3.38.0",
"@payloadcms/db-vercel-postgres": "3.38.0",
"@payloadcms/live-preview-react": "3.38.0",
"@payloadcms/next": "3.38.0",
"@payloadcms/payload-cloud": "3.38.0",
"@payloadcms/plugin-cloud-storage": "3.38.0",
"@payloadcms/plugin-form-builder": "3.38.0",
"@payloadcms/plugin-nested-docs": "3.38.0",
"@payloadcms/plugin-redirects": "3.38.0",
"@payloadcms/plugin-search": "3.38.0",
"@payloadcms/plugin-seo": "3.38.0",
"@payloadcms/richtext-lexical": "3.38.0",
"@payloadcms/storage-s3": "3.38.0",
"@payloadcms/ui": "3.38.0",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.4",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"geist": "^1.4.2",
"graphql": "^16.11.0",
"ics": "^3.8.1",
"lucide-react": "^0.511.0",
"next": "15.3.8",
"next-sitemap": "^4.2.3",
"payload": "3.38.0",
"prism-react-renderer": "^2.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "7.56.4",
"sharp": "0.34.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/typography": "^0.5.13",
"@types/escape-html": "^1.0.2",
"@types/node": "22.15.18",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"autoprefixer": "^10.4.19",
"copyfiles": "^2.4.1",
"eslint": "^9.27.0",
"eslint-config-next": "15.3.2",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss": "^8.4.38",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.3",
"typescript": "5.8.3"
},
"peerDependencies": {
"pg-cloudflare": "1.1.1"
},
"engines": {
"node": "^18.20.2 || >=20.9.0",
"pnpm": "^9 || ^10"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}