-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.46 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.46 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-ecommerce",
"version": "1.0.0",
"description": "Ecommerce template for Payload",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev -p 3344",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"payload": "payload",
"seed": "pnpm tsx seed/run.ts",
"reset": "yes | payload migrate:fresh",
"generate:importmap": "payload generate:importmap",
"generate:types": "payload generate:types",
"reinstall": "rm -rf tsconfig.tsbuildinfo .next node_modules pnpm-lock.yaml && pnpm install",
"reinstall:full": "rm -rf pnpm-lock.yaml .next .turbo node_modules && pnpm store prune && pnpm install"
},
"dependencies": {
"@payloadcms/admin-bar": "3.81.0",
"@payloadcms/db-postgres": "3.81.0",
"@payloadcms/email-nodemailer": "3.81.0",
"@payloadcms/live-preview-react": "3.81.0",
"@payloadcms/next": "3.81.0",
"@payloadcms/plugin-ecommerce": "3.81.0",
"@payloadcms/richtext-lexical": "3.81.0",
"@payloadcms/storage-vercel-blob": "3.81.0",
"@radix-ui/react-label": "^2.1.8",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"next": "16.2.3",
"next-intl": "^4.8.3",
"payload": "3.81.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.71.2",
"react-icons": "^5.6.0",
"sharp": "0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@next/env": "16.2.3",
"@next/eslint-plugin-next": "16.2.3",
"@tailwindcss/postcss": "4.2.2",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"dotenv": "^17.3.1",
"eslint": "9.39.3",
"eslint-config-next": "16.2.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "4.1.18",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.57.1"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"engines": {
"node": ">=22.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
},
"packageManager": "pnpm@10.33.0",
"volta": {
"node": "22.22.2"
}
}