-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.4 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
102
{
"name": "landing-page",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"prebuild": "npm run migration:check",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.cjs && node scripts/prepare-standalone.mjs",
"start": "next start",
"standalone": "node .next/standalone/server.js",
"migrate": "payload migrate",
"migrate:create": "payload migrate:create",
"migrate:status": "payload migrate:status",
"migration:check": "node scripts/check-migrations.mjs",
"migration:snapshot": "payload generate:db-schema --log=false --prettify=false",
"generate:importmap": "payload generate:importmap",
"lint": "npm run typecheck",
"typecheck": "tsc --noEmit",
"knip": "node --import tsx ./node_modules/knip/bin/knip.js",
"test": "node --import tsx --test tests/*.test.ts",
"generate": "payload generate:types"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@c15t/nextjs": "^2.1.0",
"@c15t/react": "^2.1.0",
"@c15t/scripts": "^2.1.0",
"@code0-tech/pictor": "^0.14.0",
"@icons-pack/react-simple-icons": "^13.13.0",
"@mvriu5/payload-ai": "^1.6.3",
"@mvriu5/payload-color-picker": "^1.0.2",
"@mvriu5/payload-icon-picker": "^1.1.1",
"@mvriu5/payload-portable-plugin": "^0.8.5",
"@number-flow/react": "^0.6.2",
"@openrouter/ai-sdk-provider": "^3.0.0",
"@payloadcms/db-postgres": "3.86.0",
"@payloadcms/email-nodemailer": "3.86.0",
"@payloadcms/next": "3.86.0",
"@payloadcms/plugin-seo": "3.86.0",
"@payloadcms/richtext-lexical": "3.86.0",
"@tabler/icons-react": "3.41.1",
"border-beam": "^1.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"graphql": "^16.14.2",
"knip": "^6.27.0",
"motion": "^12.42.2",
"next": "^16.2.10",
"next-sitemap": "^4.2.3",
"ogl": "^1.0.11",
"payload": "3.86.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-player": "^3.4.0",
"sanitize-html": "^2.17.6",
"sass": "^1.101.7",
"sharp": "^0.35.3",
"shiki": "^4.3.1",
"tailwind-merge": "^3.6.0",
"web-haptics": "^0.0.6"
},
"devDependencies": {
"@ai-sdk/mistral": "^4.0.16",
"@swc-node/register": "^1.12.1",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"postcss": "^8.5.21",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"knip": {
"ignoreFiles": [
"next-sitemap.config.cjs",
"src/payload-schema.snapshot"
],
"ignoreDependencies": [
"@swc-node/register",
"prettier",
"server-only"
]
},
"overrides": {
"postcss": "$postcss",
"uuid": "14.0.1",
"nodemailer": "9.0.3",
"lodash": "4.18.1",
"file-type": "22.0.0",
"dompurify": "3.4.12",
"undici": "8.8.0",
"yaml": "2.9.0",
"@esbuild-kit/core-utils": {
"esbuild": "0.28.1"
}
}
}