forked from payloadcms/nextjs-custom-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "payload-nextjs-server",
"description": "A boilerplate project for NextJS with Payload CMS",
"keywords": [
"payload",
"cms",
"nextjs"
],
"version": "0.0.1",
"private": false,
"license": "MIT",
"author": "TRBL",
"scripts": {
"build:next": "next build",
"build:server": "tsc --project tsconfig.server.json",
"build:payload": "payload build",
"build": "cross-env NODE_ENV=production yarn build:payload && yarn build:server && cross-env NEXT_BUILD=true node dist/index.js",
"dev": "node dev.js",
"seed": "node seed/index.js",
"serve": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@babel/register": "^7.17.0",
"dotenv": "^16.0.0",
"escape-html": "^1.0.3",
"express": "^4.18.0",
"next": "^12.1.0",
"payload": "^1.0.7",
"react": "^18.1.0",
"sass": "^1.52.0",
"slate": "^0.81.0",
"typescript": "^4.7.0"
},
"devDependencies": {
"@trbl/eslint-config": "^1.2.4",
"@types/express": "^4.17.11",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"ts-node": "^10.8.0"
}
}