-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
{
"name": "budget-app",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "npx husky install",
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@hookform/resolvers": "^3.10.0",
"@mui/lab": "^6.0.0-beta.22",
"@mui/material": "^6.3.1",
"@mui/x-data-grid": "^7.23.5",
"@reduxjs/toolkit": "^1.9.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.13",
"notistack": "^3.0.1",
"openai": "^4.77.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-intl": "^7.1.0",
"react-router-dom": "~6.3.0",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"stylis": "^4.3.4",
"tailwind-merge": "^2.6.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.62.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.0.11",
"@types/stylis": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-react-swc": "^3.2.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"msw": "^2.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.9",
"rollup-plugin-visualizer": "^5.14.0",
"sass-embedded": "^1.83.4",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-plugin-html-config": "^2.0.2",
"vitest": "^2.1.8"
}
}