-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "next-tailwind-chakra-template",
"version": "1.0.0",
"private": false,
"scripts": {
"build:css": "postcss src/assets/styles/index.css -o src/assets/styles/tailwind.css",
"watch:css": "postcss src/assets/styles/index.css -o src/assets/styles/tailwind.css",
"build-js": "next build",
"build": "npm-run-all build:css build-js",
"dev:watch": "npm-run-all -p watch:css dev ",
"dev": "next dev",
"start": "next start",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@theme-ui/presets": "^0.3.0",
"@zeit/next-css": "^1.0.1",
"autoprefixer": "^9.8.5",
"emotion-theming": "^10.0.27",
"next": "9.4.4",
"next-images": "^1.4.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"tailwindcss": "^1.5.2"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"prettier": "^2.0.5"
}
}