-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 917 Bytes
/
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
{
"dependencies": {
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"tailwindcss": "^1.4.6"
},
"scripts": {
"postcss": "postcss src/tailwind/tailwind.css -o src/style.css",
"watch:postcss": "onchange -i 'src/tailwind' -- npm run postcss",
"start:react": "react-scripts start",
"start": "run-p watch:postcss start:react",
"build": "NODE_ENV=production npm run postcss && react-scripts build"
},
"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"
]
}
}