This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
58 lines (58 loc) · 1.88 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": "next-payload-demo",
"description": "Demo of Payload deployed as Vercel functions within NextJS",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"install:payload": "next-payload install",
"build:next": "next build",
"build": "yarn build:next",
"generate:types": "cross-env PAYLOAD_CONFIG_PATH=payload/payload.config.ts payload generate:types",
"generate:graphQLSchema": "PAYLOAD_CONFIG_PATH=payload/payload.config.ts payload generate:graphQLSchema",
"pack:next-payload": "./scripts/pack-next-payload.sh",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.428.0",
"@aws-sdk/lib-storage": "^3.428.0",
"@faceless-ui/css-grid": "^1.2.0",
"@faceless-ui/modal": "^2.0.1",
"@payloadcms/bundler-webpack": "^1.0.2",
"@payloadcms/db-mongodb": "^1.0.3",
"@payloadcms/db-postgres": "^0.1.6",
"@payloadcms/next-payload": "^0.1.11",
"@payloadcms/plugin-cloud-storage": "^1.1.1",
"@payloadcms/plugin-seo": "^1.0.15",
"@payloadcms/richtext-lexical": "^0.1.5",
"@payloadcms/richtext-slate": "^1.2.1",
"@swc/wasm": "^1.3.35",
"@vercel/edge": "^0.1.2",
"aws-crt": "^1.18.0",
"critters": "^0.0.20",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"next": "^13.5.7-canary.37",
"null-loader": "^4.0.1",
"payload": "^2.3.1",
"payload-admin-bar": "^1.0.5",
"sass": "^1.58.2",
"sass-loader": "^13.2.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.5",
"@swc/core": "^1.3.35",
"@types/express": "^4.17.9",
"@types/node": "^18.11.18",
"@types/react": "^18.0.28",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.8.4"
}
}