-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.82 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
86
87
88
89
90
91
92
93
{
"name": "hactar-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.46",
"@reduxjs/toolkit": "^1.2.3",
"@types/material-ui": "^0.21.7",
"axios": "^0.21.1",
"bignumber.js": "^9.0.0",
"classnames": "^2.2.6",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-hook-form": "4.8.2",
"react-js-pagination": "^3.0.3",
"react-moment": "^0.9.7",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"react-virtualized": "^9.21.2",
"recharts": "^2.0.0-beta.1",
"redux-logger": "^3.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"lint": "eslint --color --ext .ts --ext .tsx src/",
"lint:fix": "yarn run lint --fix",
"prettier": "prettier --list-different \"**/*.{ts, tsx, css, scss}\"",
"prettier:fix": "yarn run prettier --write"
},
"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": {
"@storybook/addon-actions": "^5.3.7",
"@storybook/addon-links": "^5.3.7",
"@storybook/addons": "^5.3.7",
"@storybook/preset-create-react-app": "^1.5.2",
"@storybook/react": "^5.3.7",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^10.0.0",
"@types/bignumber.js": "^5.0.0",
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.4",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.5",
"@types/react-ga": "^2.3.0",
"@types/react-js-pagination": "^3.0.3",
"@types/react-redux": "^7.1.6",
"@types/react-router-dom": "^5.1.3",
"@types/react-virtualized": "^9.21.7",
"@types/recharts": "^1.8.5",
"@types/redux-logger": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"typescript": "~3.7.2"
}
}