-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.22 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": "ywc-backoffice",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "REACT_APP_API_DEV=true react-scripts start",
"build": "react-scripts build",
"build-dev": "REACT_APP_API_DEV=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "yarn run lint --fix",
"lint": "tslint './src/**/*.{ts,tsx}'",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"dependencies": {
"@ibm/plex": "^2.0.0",
"@types/jest": "24.0.15",
"@types/node": "12.6.8",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.5",
"antd": "^3.20.7",
"apexcharts": "^3.8.3",
"axios": "^0.19.0",
"mobx": "^5.13.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^6.1.1",
"mobx-react-lite": "^1.4.1",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"qs": "^6.7.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-apexcharts": "^1.3.3",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"serializr": "^1.5.1",
"styled-components": "^4.3.2",
"typescript": "3.5.3",
"use-react-router": "^1.0.7"
},
"devDependencies": {
"@types/qs": "^6.5.3",
"@types/ramda": "^0.26.25",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-loadable": "^5.5.1",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.18",
"husky": "^3.0.1",
"prettier": "^1.18.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint",
"pre-push": "yarn lint"
}
},
"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"
]
},
"resolutions": {
"css-animation": "1.5.0"
}
}