-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3.68 KB
/
package.json
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
{
"name": "with-payload",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"stripe:listen": "stripe listen --forward-to localhost:3000/api/stripe/webhooks",
"stripe:trigger": "stripe trigger checkout.session.async_payment_succeeded",
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
"devturbo": "cross-env NODE_OPTIONS=--no-deprecation next dev --turbo",
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
"build": "pnpm payload migrate && pnpm generate:types && cross-env NODE_OPTIONS=--no-deprecation next build",
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
"ci": "payload migrate && pnpm build",
"db:migrate": "pnpm run payload migrate",
"db:migrate:create": "pnpm run payload migrate:create",
"generate:importmap": "payload generate:importmap",
"generate:types": "payload generate:types",
"prettier:format": "npx prettier --write ."
},
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@mantine/core": "^7.12.2",
"@mantine/dropzone": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@next/bundle-analyzer": "^14.2.11",
"@payload-enchants/cached-local-api": "^1.2.2",
"@payloadcms/db-postgres": "3.0.0-beta.112",
"@payloadcms/next": "3.0.0-beta.112",
"@payloadcms/plugin-stripe": "3.0.0-beta.112",
"@payloadcms/richtext-lexical": "3.0.0-beta.112",
"@payloadcms/richtext-slate": "3.0.0-beta.112",
"@payloadcms/storage-s3": "3.0.0-beta.112",
"@payloadcms/storage-vercel-blob": "3.0.0-beta.112",
"@payloadcms/ui": "3.0.0-beta.112",
"@radix-ui/react-slot": "^1.1.0",
"@stripe/stripe-js": "3.4.1",
"@svgr/webpack": "^8.1.0",
"@tabler/icons-react": "^3.17.0",
"@types/react-syntax-highlighter": "^15.5.13",
"arctic": "^1.9.2",
"babel-plugin-react-compiler": "0.0.0-experimental-fe484b5-20240912",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"embla-carousel-react": "^8.2.1",
"lucia": "^3.2.0",
"next": "15.0.0-canary.175",
"node-html-parser": "^6.1.13",
"payload": "3.0.0-beta.112",
"react": "19.0.0-rc-3edc000d-20240926",
"react-dom": "19.0.0-rc-3edc000d-20240926",
"react-hook-form": "^7.53.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"sharp": "0.33.5",
"sonner": "^1.5.0",
"stripe": "^15.7.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.5.4",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"autoprefixer": "^10.4.20",
"eslint": "^9.10.0",
"eslint-config-next": "15.0.0-canary.152",
"postcss": "^8.4.45",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"stripe-cli": "^0.1.0",
"tailwindcss": "^3.4.11",
"typescript": "5.6.2"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
},
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
},
"packageManager": "[email protected]+sha256.50783dd0fa303852de2dd1557cd4b9f07cb5b018154a6e76d0f40635d6cee019"
}