-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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
{
"name": "alfred-web",
"version": "0.0.0",
"description": "A web client for alfred.",
"keywords": [
"vite",
"react",
"redux",
"mui"
],
"scripts": {
"start": "vite --port 3000",
"build:production": "vite build --mode=production",
"test": "jest",
"serve": "vite preview",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"commit": "commit",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint --cache ./src"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.4",
"@hookform/resolvers": "^3.3.1",
"@mui/icons-material": "^5.13.7",
"@mui/material": "^5.13.7",
"@mui/system": "^5.14.4",
"@mui/x-date-pickers": "^6.15.0",
"@reduxjs/toolkit": "^1.9.5",
"dayjs": "^1.11.10",
"i18next": "^23.5.1",
"material-react-table": "^1.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.46.2",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.2.2",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"react-single-page-navigation": "^1.0.1",
"react-social-login-buttons": "^3.9.1",
"reactjs-social-login": "^2.6.3",
"redux-persist": "^6.0.0",
"swiper": "^10.2.0",
"vite-plugin-svgr": "2.4.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@commitlint/prompt-cli": "^17.4.0",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.3",
"jest": "29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^14.0.1",
"postcss": "^8.4.21",
"prettier": "^3.0.3",
"react-test-renderer": "^18.2.0",
"ts-jest": "29.0.3",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-tsconfig-paths": "^4.0.3"
}
}