generated from payloadcms/nextjs-custom-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.33 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
{
"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",
"@owaiswiz/use-in-view": "^1.0.16",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"dotenv": "^16.0.0",
"escape-html": "^1.0.3",
"express": "^4.18.0",
"feather-icons": "^4.28.0",
"framer-motion": "^4.1.5",
"next": "^12.1.0",
"payload": "^1.0.7",
"react": "^18.1.0",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-github-btn": "^1.2.0",
"react-hook-inview": "^4.5.0",
"react-icons": "^4.4.0",
"react-modal": "^3.13.1",
"react-rnd": "^10.2.4",
"react-slick": "^0.28.1",
"sass": "^1.52.0",
"slate": "^0.81.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.5",
"tailwindcss": "^2.1.1",
"twin.macro": "^2.8.2",
"typescript": "^4.7.0",
"zustand": "^4.1.1"
},
"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",
"babel-plugin-twin": "^1.0.2",
"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"
},
"babelMacros": {
"twin": {
"styled": {
"import": "default",
"from": "styled-components"
}
}
}
}