-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.23 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
{
"name": "curhatasi-web",
"version": "1.0.1",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.2",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.3",
"@material-ui/data-grid": "^4.0.0-alpha.23",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@tinymce/tinymce-react": "^3.12.2",
"@types/file-saver": "^2.0.2",
"@types/jest": "^26.0.21",
"@types/node": "^12.20.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"axios": "^0.21.1",
"camelize": "^1.0.0",
"chart.js": "^3.5.1",
"date-fns": "^2.19.0",
"file-saver": "^2.0.5",
"formik": "^2.2.6",
"formik-material-ui": "^3.0.1",
"formik-material-ui-lab": "^0.0.8",
"formik-material-ui-pickers": "^0.0.12",
"html-react-parser": "^1.2.5",
"jss": "^10.6.0",
"jss-plugin-extend": "^10.6.0",
"material-ui-audio-player": "^1.6.2",
"npm": "^7.18.1",
"react": "^17.0.1",
"react-big-calendar": "^0.33.2",
"react-chartjs-2": "^3.0.5",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-query": "^3.13.10",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"snakelize": "https://github.com/fyfirman/snakelize",
"ts-enum-util": "^4.0.2",
"typescript": "^4.2.3",
"web-vitals": "^1.1.1",
"yup": "^0.32.9"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.{ts,tsx,json}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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/react-big-calendar": "^0.31.0",
"@types/react-helmet": "^6.1.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1"
},
"jest": {
"moduleNameMapper": {
"@assets/(.*)$": "<rootDir>/src/assets/$1",
"@constants/(.*)$": "<rootDir>/src/constants/$1",
"@components/(.*)$": "<rootDir>/src/components/$1",
"@router/(.*)$": "<rootDir>/src/router/$1",
"@redux/(.*)$": "<rootDir>/src/redux/$1",
"@services/(.*)$": "<rootDir>/src/services/$1",
"@pages/(.*)$": "<rootDir>/src/pages/$1",
"@theme/(.*)$": "<rootDir>/src/theme/$1",
"@utils/(.*)$": "<rootDir>/src/utils/$1"
}
}
}