-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.46 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
{
"name": "payload-nextjs-server",
"description": "A boilerplate project for NextJS with Payload CMS",
"keywords": [
"payload",
"cms",
"nextjs"
],
"version": "0.0.1",
"private": false,
"author": "TRBL",
"scripts": {
"build:next": "next build",
"build:server": "tsc --project tsconfig.server.json",
"build:payload": "payload build",
"build": "NODE_ENV=production yarn build:payload && yarn build:server && NEXT_BUILD=true node dist/index.js",
"dev": "node dev.js",
"seed": "node seed/index.js",
"serve": "NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@babel/register": "^7.12.10",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@faceless-ui/css-grid": "^1.0.1",
"@faceless-ui/modal": "^1.1.4",
"@faceless-ui/mouse-info": "^1.2.4",
"@faceless-ui/scroll-info": "^1.2.5",
"@faceless-ui/window-info": "^1.2.7",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.14",
"@mui/icons-material": "^5.11.0",
"@mui/joy": "^5.0.0-alpha.64",
"@mui/lab": "^5.0.0-alpha.117",
"@mui/material": "^5.11.6",
"@payloadcms/plugin-form-builder": "^1.0.12",
"axios": "^1.2.3",
"color": "^3.1.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"intasend-node": "^1.0.3",
"jss-global": "^3.0.0",
"next": "^10.0.5",
"payload": "^0.9.4",
"react": "^17.0.1",
"react-jss": "10.4.0",
"react-toastify": "^7.0.4",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.6",
"tailwind-styled-components": "^2.2.0",
"typescript": "^4.1.3",
"zustand": "^4.3.2"
},
"devDependencies": {
"@trbl/eslint-config": "^2.0.3",
"@types/express": "^4.17.11",
"@types/html-validator": "^5.0.0",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"autoprefixer": "^10.4.13",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-jest-dom": "^3.7.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.6",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"resolutions": {
"styled-components": "^5"
}
}