-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
102 lines (102 loc) · 2.81 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
{
"name": "msclubwesite-v2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hookform/resolvers": "^2.8.5",
"@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/jquery": "^3.5.10",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-avatar-editor": "^10.3.6",
"@types/react-bootstrap-table-next": "^4.0.16",
"@types/react-bootstrap-table2-paginator": "^2.1.2",
"@types/react-dom": "^17.0.0",
"@types/react-rangeslider": "^2.2.4",
"@types/react-rte": "^0.16.3",
"axios": "^0.24.0",
"chart.js": "^2.9.3",
"env-cmd": "^10.1.0",
"html-to-react": "^1.4.7",
"jquery": "^3.6.0",
"mdbreact": "^5.2.0",
"moment": "^2.29.1",
"node-sass": "4.14.1",
"react": "^17.0.2",
"react-avatar-editor": "^12.0.0",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-bootstrap-table2-toolkit": "^2.1.3",
"react-chartjs-2": "^2.9.0",
"react-content-loader": "^6.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.21.2",
"react-multi-select-component": "^4.1.15",
"react-rangeslider": "^2.2.0",
"react-redux": "^7.2.6",
"react-router-dom": "5.1.2",
"react-rte": "^0.16.4",
"react-scripts": "4.0.3",
"react-select": "^5.2.1",
"react-toastify": "^8.1.0",
"react-webcam": "^7.0.0",
"redux": "^4.1.2",
"redux-promise-middleware": "^6.1.2",
"serve": "^13.0.2",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"start:local": "env-cmd -f .env.local react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write ."
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/bootstrap": "^5.1.6",
"@types/react-bootstrap-table2-toolkit": "^2.1.5",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "5.1.2",
"@types/redux": "^3.6.0",
"@types/redux-promise-middleware": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"sass": "^1.47.0"
}
}