-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.34 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "transmission-client",
"version": "0.1.0",
"private": true,
"homepage": "http://tr.zj9495.com/transmission/web/",
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.6.2",
"@mui/lab": "^5.0.0-alpha.81",
"@mui/material": "^5.7.0",
"@mui/styles": "^5.7.0",
"@mui/x-data-grid-pro": "^5.10.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.166",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.2",
"@types/react-redux": "^7.1.12",
"@types/react-router-dom": "^5.1.6",
"@types/redux-mock-store": "^1.0.2",
"@types/uuid": "^8.3.1",
"axios": "^0.21.0",
"clsx": "^1.1.1",
"css-mediaquery": "^0.1.2",
"cypress": "^9.6.1",
"http-proxy-middleware": "^2.0.0",
"husky": "^4.3.7",
"immer": "^8.0.0",
"lint-staged": "^10.5.3",
"lodash": "^4.17.20",
"material-ui-popup-state": "^2.0.0",
"moment": "^2.29.1",
"notistack": "^2.0.2",
"prettier": "^2.2.1",
"query-string": "^7.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.14.1",
"react-intl": "^5.10.6",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.2",
"react-use": "^17.2.4",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"swr": "^0.5.6",
"typescript": "^4.0.3",
"uuid": "^8.3.2",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:report": "yarn build --stats && npx webpack-bundle-analyzer ./build/bundle-stats.json",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "yarn lint --fix",
"cy": "cypress",
"cy:open": "cypress open"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mui-unused-classes": "^1.0.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^26.0.1",
"jest-matchmedia-mock": "^1.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{cypress,src}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write"
]
}
}