This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
58 lines (58 loc) · 2 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
{
"name": "payload-3.0-demo",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "cross-env NODE_OPTIONS=\"${NODE_OPTIONS} --no-deprecation\" next dev",
"devturbo": "pnpm dev --turbo",
"devsafe": "rm -rf .next && pnpm dev",
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
"ci": "payload migrate && pnpm build",
"payload": "payload",
"generate:types": "payload generate:types",
"generate:schema": "payload-graphql generate:schema",
"standalone-script": "payload run ./src/scripts/standalone-script.ts",
"generate:importmap": "payload generate:importmap"
},
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
"dependencies": {
"@payloadcms/db-mongodb": "3.0.0-beta.108",
"@payloadcms/db-postgres": "3.0.0-beta.108",
"@payloadcms/next": "3.0.0-beta.108",
"@payloadcms/richtext-lexical": "3.0.0-beta.108",
"@payloadcms/richtext-slate": "3.0.0-beta.108",
"@payloadcms/ui": "3.0.0-beta.108",
"babel-plugin-react-compiler": "0.0.0-experimental-48eb8f4-20240822",
"cross-env": "^7.0.3",
"graphql": "^16.8.2",
"next": "15.0.0-canary.104",
"payload": "3.0.0-beta.108",
"react": "19.0.0-rc-06d0b89e-20240801",
"react-dom": "19.0.0-rc-06d0b89e-20240801",
"sharp": "0.32.6"
},
"devDependencies": {
"@payloadcms/graphql": "3.0.0-beta.108",
"@types/node": "^20.14.9",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"eslint": "^8.57.0",
"eslint-config-next": "15.0.0-canary.104",
"typescript": "5.5.4"
},
"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]"
}
}