forked from ecklf/react-hooks-mobx-state-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "react-hooks-mobx-state-tree",
"version": "0.1.89",
"private": true,
"dependencies": {
"@types/jest": "25.2.1",
"@types/node": "12.12.35",
"@types/react": "16.9.32",
"@types/react-dom": "16.9.6",
"mobx": "5.15.4",
"mobx-react-lite": "1.5.2",
"mobx-state-tree": "3.15.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-github-btn": "1.1.1",
"react-scripts": "3.4.1",
"typescript": "3.8.3"
},
"scripts": {
"start": "yarn run build:css && react-scripts start",
"build": "yarn run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:css": "postcss src/css/index.src.css -o src/css/index.css",
"watch:css": "postcss src/css/index.src.css -o src/css/index.css -w",
"dev": "concurrently \"yarn watch:css --silent\" \"yarn start --silent\""
},
"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"
]
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "2.1.2",
"@tailwindcss/custom-forms": "0.2.1",
"autoprefixer": "9.7.6",
"concurrently": "5.1.0",
"cssnano": "4.1.10",
"postcss-cli": "7.1.0",
"tailwindcss": "1.2.0"
}
}