-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.25 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.25 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
{
"name": "landing-page",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "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",
"lint": "next lint",
"knip": "knip",
"generate": "payload generate:types",
"export-data": "node --import tsx scripts/export-data.ts",
"import-data": "node --import tsx scripts/import-data.ts",
"prepare": "husky"
},
"dependencies": {
"@c15t/nextjs": "^1.8.5",
"@c15t/scripts": "^1.0.1",
"@code0-tech/pictor": "^0.4.0",
"@icons-pack/react-simple-icons": "^13.13.0",
"@next/env": "^16.2.1",
"@payloadcms/db-postgres": "3.80.0",
"@payloadcms/email-nodemailer": "3.80.0",
"@payloadcms/next": "3.80.0",
"@payloadcms/plugin-import-export": "3.80.0",
"@payloadcms/richtext-lexical": "3.80.0",
"@tabler/icons-react": "^3.40.0",
"clsx": "^2.1.1",
"graphql": "^16.13.2",
"knip": "^6.0.5",
"motion": "^12.38.0",
"next": "^16.2.1",
"ogl": "^1.0.11",
"payload": "3.80.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sass": "^1.98.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"web-haptics": "^0.0.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"overrides": {
"file-type": "21.3.4",
"undici": "7.24.6",
"dompurify": "3.3.3",
"smol-toml": "1.6.1",
"yaml": "2.8.3",
"anymatch": {
"picomatch": "2.3.2"
},
"readdirp": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
},
"knip": {
"picomatch": "4.0.4"
},
"tinyglobby": {
"picomatch": "4.0.4"
},
"@parcel/watcher": {
"picomatch": "4.0.4"
},
"@esbuild-kit/core-utils": {
"esbuild": "0.27.4"
},
"payload": {
"ajv": "8.18.0"
}
}
}