-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
91 lines (91 loc) · 2.81 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
{
"name": "mantine-admin",
"version": "1.0.0",
"author": "Joshua Lee <jotyy318@gmail.com>",
"description": "A Modern Admin Dashboard made with Mantine/React/NextJS!",
"lint-staged": {
".": ["bun run lint"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "biome lint",
"format": "biome format --write .",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"release": "standard-version",
"release-as-major": "bun run release --release-as major",
"release-as-minor": "bun run release --release-as minor",
"release-as-patch": "bun run release --release-as patch",
"push-release": "git push --follow-tags origin main",
"pull": "git rebase origin main -i",
"pre-commit": "bun run lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "3.3.4",
"@mantine/core": "^7.11.1",
"@mantine/dates": "^7.11.1",
"@mantine/dropzone": "^7.11.1",
"@mantine/hooks": "^7.11.1",
"@mantine/modals": "^7.11.1",
"@mantine/notifications": "^7.11.1",
"@mantine/nprogress": "^7.11.1",
"@tabler/icons-react": "^2.47.0",
"@tanstack/react-query": "5.18.1",
"@tanstack/react-table": "^8.19.2",
"@vercel/analytics": "^1.3.1",
"chart.js": "^4.4.3",
"dayjs": "^1.11.11",
"ky": "^1.4.0",
"mantine-react-table": "2.0.0-alpha.5",
"next": "14.1.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.50.0",
"react-use": "17.5.0",
"stylis-plugin-rtl": "^2.1.1",
"zod": "^3.23.8",
"zustand": "4.5.0"
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/blocks": "^7.6.20",
"@storybook/nextjs": "^7.6.20",
"@storybook/preview-api": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/testing-library": "^0.2.2",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.4.1",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/node": "20.11.16",
"@types/react": "18.2.52",
"husky": "9.0.10",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.1",
"postcss": "^8.4.39",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"standard-version": "9.5.0",
"storybook": "^7.6.20",
"storybook-dark-mode": "^3.0.3",
"typescript": "5.3.3"
}
}