-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.32 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.32 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "create-react-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.0.3",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"bootstrap": "3",
"connected-react-router": "^4.4.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.78.0",
"flow-watch": "^1.1.3",
"formik": "^1.2.0",
"formik-material-ui": "^0.0.9",
"history": "^4.7.2",
"hot-wire": "^0.0.2",
"husky": "^0.14.3",
"jest-dom": "^1.12.0",
"jest-enzyme": "^6.0.2",
"lint-staged": "^7.2.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.0",
"react": "^16.4.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.2",
"react-intl": "^2.4.0",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"react-styleguidist": "^7.1.3",
"react-test-renderer": "^16.4.2",
"react-testing-library": "^4.1.6",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"source-map-explorer": "^1.5.0",
"uuid": "^3.3.2",
"yup": "^0.26.3"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"precommit": "lint-staged",
"flow": "flow",
"flow:watch": "flow-watch",
"flow-typed": "flow-typed",
"prettier": "prettier --single-quote --write \"src/**/*.{js,jsx,json,css}\"",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"eject": "react-scripts eject"
},
"devDependencies": {}
}