-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "react-material-ui-auth",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "2.1.1",
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"cross-fetch": "^2.2.2",
"moment": "^2.22.2",
"pluralize": "^7.0.0",
"react-material-ui-form-validator": "^2.0.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sort-by": "^1.2.0",
"throttle-debounce": "^2.0.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"fetch-mock": "^7.0.0-alpha.6",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"react-test-renderer": "^16.4.2",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build && yarn run build-css",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "yarn build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}