forked from tgbot-collection/YYeTsFE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.05 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
{
"name": "yyetsbot",
"version": "1.4.3",
"private": true,
"dependencies": {
"@ant-design/charts": "^1.1.20",
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@reduxjs/toolkit": "^1.6.0",
"@sentry/cli": "^1.66.0",
"@sentry/react": "^6.10.0",
"@sentry/tracing": "^6.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/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-window": "^1.8.3",
"axios": "^0.21.1",
"bowser": "^2.11.0",
"clsx": "^1.1.1",
"dayjs": "^1.10.5",
"formik": "^2.2.9",
"http-proxy-middleware": "^2.0.0",
"js-cookie": "^2.2.1",
"material-ui-popup-state": "^1.8.3",
"md5": "^2.3.0",
"notistack": "^1.0.9",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-github-btn": "^1.2.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-transition-group": "^4.4.2",
"react-window": "^1.8.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"source-map-explorer": "^2.5.2",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/js-cookie": "^2.2.6",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-env": "^1.16.2",
"cz-conventional-changelog": "3.3.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"prettier": "^2.3.1"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"release": "(export REACT_APP_SENTRY_RELEASE=$(git rev-parse --short HEAD); react-scripts build && node scripts/sentry.js)",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"react-app",
"airbnb-typescript",
"prettier"
],
"rules": {
"import/prefer-default-export": "off",
"import/no-default-export": "off",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"no-use-before-define": "off",
"jsx-a11y/anchor-is-valid": "off"
}
},
"prettier": {
"printWidth": 120
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=12 <17"
}
}