-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "vivifyideas-react-boilerplate",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"postinstall": "husky install",
"lint": "eslint --ext tsx --ext ts --max-warnings=0",
"pre-commit": "yarn lint-staged"
},
"dependencies": {
"@chakra-ui/react": "^1.8.3",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@sentry/react": "^6.17.6",
"axios": "^0.25.0",
"chakra-formik-experiment": "^0.2.0",
"constate": "^3.3.0",
"formik": "^2.2.9",
"framer-motion": "^5",
"i18next": "^21.6.11",
"jwt-decode": "^3.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.4",
"react-query": "^3.34.14",
"react-router-dom": "^6.2.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/loadable__component": "^5.13.4",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"typescript": "^4.5.5",
"vite": "^2.7.13"
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true
}