-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "wye-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@storybook/addon-actions": "^5.3.0",
"@storybook/preset-create-react-app": "^1.5.1",
"@types/chai": "^4.2.4",
"@types/classnames": "^2.2.9",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.144",
"@types/node": "^12.7.5",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.10.0",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.0",
"@types/redux-form": "^8.1.9",
"@types/redux-logger": "^3.0.7",
"@types/sinon": "^7.5.0",
"@types/styled-components": "^4.1.20",
"@types/url-join": "^4.0.0",
"awesome-typescript-loader": "^5.2.1",
"classnames": "^2.2.6",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"lodash": "^4.17.10",
"prettier": "^1.10.2",
"react": "^16.9.0",
"react-docgen-typescript-loader": "^3.3.0",
"react-dom": "^16.2.0",
"react-modal": "^3.3.2",
"react-redux": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-saga": "^1.1.1",
"styled-components": "^4.4.0",
"typescript": "^3.6.0",
"url-join": "^4.0.0",
"whatwg-fetch": "^2.0.4"
},
"scripts": {
"start": "react-scripts start",
"dev-start": "REACT_APP_SERVER_ROOT_URL=http://local.api.wye.com:8000 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9001 -c .storybook",
"precommit": "lint-staged"
},
"devDependencies": {
"@storybook/addon-info": "^5.3.0",
"@storybook/react": "^5.3.0",
"@types/enzyme": "^3.10.3",
"@types/fetch-mock": "^7.3.1",
"babel-core": "^6.26.0",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fetch-mock": "^6.5.0",
"redux-logger": "^3.0.6",
"sinon": "^7.5.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}