-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.22 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
{
"name": "nextjs-template",
"version": "0.1.11",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"json-server": "json-server --watch db.json --port 5000",
"prepare": "husky install",
"precommit-version-update": "npm version patch --no-git-tag-version",
"docker:dev": "docker-compose -f docker-compose.dev.yml up --build",
"docker:prod": "docker-compose -f docker-compose.prod.yml up",
"docker:stop": "docker-compose down"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/inter": "^5.1.0",
"@hello-pangea/dnd": "^17.0.0",
"@hookform/resolvers": "^3.9.1",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.2.0",
"@mui/material-nextjs": "^6.1.5",
"@mui/styled-engine": "^6.1.7",
"@mui/styled-engine-sc": "^6.1.7",
"@mui/system": "^6.1.7",
"@mui/x-charts": "^7.22.2",
"@mui/x-data-grid": "^7.22.2",
"@mui/x-data-grid-pro": "^7.22.2",
"@mui/x-date-pickers": "^7.22.2",
"@mui/x-date-pickers-pro": "^7.22.2",
"@mui/x-tree-view": "^7.22.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@tanstack/react-query": "^5.62.8",
"@types/react-input-mask": "^3.0.6",
"clsx": "^2.1.1",
"cookies-next": "^4.3.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.15.0",
"json-server": "^1.0.0-beta.3",
"jsonwebtoken": "9.0.0",
"lucide-react": "^0.460.0",
"next": "^15.5.9",
"next-auth": "^4.24.11",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.1",
"react-hot-toast": "^2.4.1",
"react-input-mask": "^2.0.4",
"shadcn-ui": "^0.9.4",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "8.5.1",
"@types/node": "^22.10.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"cypress": "^13.17.0",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"volta": {
"node": "20.18.1"
}
}