generated from farnetani/template-react-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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
{
"name": "template-react-com-prettier",
"version": "0.1.0",
"private": true,
"dependencies": {
"@headlessui/react": "^1.0.0",
"polished": "^4.1.1",
"postcss": "^8.2.9",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.1",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-scripts": "4.0.3",
"react-switch": "^6.0.0",
"styled-components": "^5.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src --max-warnings=0",
"build:tailwind": "tailwindcss build src/styles/tailwind.scss -o src/styles/tailwind.output.scss",
"build:css": "postcss src/styles/tailwind.scss -o src/styles/tailwind.output.scss",
"prestart": "npm run build:tailwind",
"prebuild": "npm run build:tailwind"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "^2.2.11",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"autoprefixer": "^10.2.5",
"classnames": "^2.3.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"node-sass": "^5.0.0",
"postcss-cli": "^8.3.1",
"postcss-scss": "^3.0.5",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.4",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
}
}