-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "create-react-app-tailwindcss",
"description": "Create React App & Tailwind CSS",
"version": "1.1.0",
"license": "MIT",
"repository": "uidoyen/create-react-app-tailwindcss",
"author": {
"name": "A. Hussain Ansari",
"email": "info@uidoyen.com",
"url": "https://twitter.com/uidoyen"
},
"keywords": [
"create-react-app-tailwindcs",
"A. Hussain Ansari",
"uidoyen"
],
"dependencies": {
"autoprefixer": "^9.7.0",
"axios": "^0.19.0",
"cross-env": "^6.0.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"purgecss": "^1.4.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-icons": "^3.7.0",
"react-loadable": "^5.5.0",
"react-redux": "^7.1.1",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"tailwindcss": "^1.1.3",
"typeface-poppins": "^0.0.72"
},
"scripts": {
"start": "npm-run-all --parallel watch:css start:react",
"build": "yarn run tailwind && node ./purge-tailwindcss.js && cross-env NODE_PATH=src GENERATE_SOURCEMAP=false react-scripts build",
"build:css": "postcss src/styles/tailwind.base.css -o src/styles/tailwind.css",
"watch:css": "postcss src/styles/tailwind.base.css -o src/styles/tailwind.css -w",
"start:react": "react-scripts start",
"build:react": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}