-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.17 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
{
"name": "react-material-dashboard",
"author": "DeviasIO",
"licence": "MIT",
"version": "1.0.0",
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint --ext=.jsx,.js,.tsx,.ts --report-unused-disable-directives --max-warnings 0 assets",
"lint-fix": "eslint --ext=.jsx,.js,.tsx,.ts assets/ --fix",
"graphql-codegen": "graphql-codegen --verbose",
"graphql-codegen-watch": "graphql-codegen --verbose --watch",
"preview": "vite preview",
"watch": "vite build --watch 2>&1 | grep -v \"Module level directives cause errors when bundled\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/styles": "^4.10.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.2",
"@mui/styles": "^5.14.1",
"@space-kit/hat": "^1.0.2",
"@tanstack/react-query": "^4.32.0",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"csstype": "^3.1.2",
"formik": "^2.1.5",
"graphql": "^16.7.1",
"history": "^5.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"momentjs": "^2.0.0",
"notistack": "^3.0.1",
"nprogress": "^0.2.0",
"prop-types": "^15.7.2",
"react": "^17.0",
"react-dom": "^17.0.2",
"react-feather": "^2.0.8",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.45.4",
"react-hooks": "^1.0.1",
"react-perfect-scrollbar": "^1.5.8",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "^3.4.1",
"reconnecting-eventsource": "^1.2.0",
"reconnecting-websocket": "^4.4.0",
"sirv": "^2.0.3",
"uuid": "^8.3.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/typescript-react-query": "^4.1.0",
"@parcel/watcher": "^2.2.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/event-source-polyfill": "^1.0.1",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-airbnb": "^0.0.1-security",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"regenerator-runtime": "^0.13.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.5"
}
}