-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "who-owns",
"version": "0.1.0",
"private": true,
"dependencies": {
"autoprefixer": "^9.8.0",
"classnames": "^2.2.6",
"isomorphic-unfetch": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^7.1.1",
"postcss-nested": "^4.2.1",
"prettier": "^2.0.5",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "3.4.1",
"tailwindcss": "^1.4.6"
},
"scripts": {
"build:css": "postcss src/style.css -o public/style.css",
"watch:css": "postcss src/style.css -o public/style.css -w",
"start": "npm-run-all -p watch:css start-js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"build": "npm-run-all build:css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}