-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.34 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.34 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
75
76
77
78
79
80
81
{
"name": "dispatchai-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "echo \"No tests yet\"",
"prepare": "husky install && (chmod -R +x .husky || echo 'Skipping chmod')"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^5.0.1",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@mui/system": "^6.1.9",
"@mui/x-charts": "^8.9.2",
"@mui/x-date-pickers": "^8.9.0",
"@reduxjs/toolkit": "^2.8.2",
"@tanstack/react-query": "^5.80.7",
"@tanstack/react-virtual": "^3.13.10",
"@types/gapi": "^0.0.47",
"@types/google.maps": "^3.58.1",
"axios": "^1.9.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"keen-slider": "^6.8.6",
"lodash": "^4.17.21",
"next": "15.1.11",
"react": "^19.1.4",
"react-big-calendar": "^1.19.4",
"react-circular-progressbar": "^2.2.0",
"react-dom": "^19.1.4",
"react-hook-form": "^7.56.4",
"react-qr-code": "^2.0.16",
"react-redux": "^9.2.0",
"react-slick": "^0.30.3",
"redux-persist": "^6.0.0",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.17",
"use-debounce": "^10.0.5",
"zod": "^3.25.17"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.27.0",
"@next/eslint-plugin-next": "^15.3.2",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-big-calendar": "^1.16.2",
"@types/react-dom": "^19",
"@types/react-redux": "^7.1.34",
"@types/react-slick": "^0.23.13",
"@types/styled-components": "^5.1.34",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write --end-of-line lf",
"eslint --fix"
]
}
}