-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.95 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.95 KB
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
{
"name": "react-admin-template",
"description": "An scaffold to quickly make an admin front-end app by react. Base on cra, ant-design, tailwind, redux, saga,...",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@reduxjs/toolkit": "^1.7.2",
"@tinymce/tinymce-react": "^3.13.0",
"antd": "^4.18.7",
"axios": "^0.26.0",
"axios-progress-bar": "^1.2.0",
"date-fns": "^2.28.0",
"i18next": "^21.6.11",
"i18next-http-backend": "^1.3.2",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-hook-guard": "^0.1.3",
"react-i18next": "^11.15.4",
"react-jwt": "^1.1.4",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.0",
"recoil": "^0.6.1",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@craco/craco": "^6.4.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.25",
"@types/react": "^17.0.39",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.2",
"craco-less": "^2.0.0",
"postcss": "^8.4.6",
"sass": "^1.49.8",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
"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"
]
}
}