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.97",
"private": true,
"dependencies": {
"@types/jest": "25.2.3",
"@types/node": "14.0.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"mobx": "5.15.4",
"mobx-react-lite": "2.0.7",
"mobx-state-tree": "3.16.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-github-btn": "1.2.0",
"react-scripts": "3.4.1",
"typescript": "3.9.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.2.0",
"@tailwindcss/custom-forms": "0.2.1",
"autoprefixer": "9.8.0",
"concurrently": "5.2.0",
"cssnano": "4.1.10",
"postcss-cli": "7.1.1",
"tailwindcss": "1.4.6"
}
}