-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
109 lines (109 loc) · 3.29 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "mantine-admin",
"version": "1.0.0",
"author": "Joshua Lee <[email protected]>",
"description": "A Modern Admin Dashboard made with Mantine/React/NextJS!",
"lint-staged": {
"src/**/*.+(js|jsx|ts|tsx|json|md)": [
"pnpm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "pnpm run partytown && next build",
"partytown": "partytown copylib public/~partytown",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm run format",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "pnpm up --interactive",
"up-latest": "pnpm up --latest",
"release": "standard-version",
"release-as-major": "pnpm run release --release-as major",
"release-as-minor": "pnpm run release --release-as minor",
"release-as-patch": "pnpm run release --release-as patch",
"push-release": "git push --follow-tags origin main",
"pull": "git rebase origin main -i",
"pre-commit": "pnpm run lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@builder.io/partytown": "0.8.1",
"@hookform/resolvers": "3.3.2",
"@mantine/core": "^7.2.2",
"@mantine/dates": "^7.2.2",
"@mantine/dropzone": "^7.2.2",
"@mantine/hooks": "^7.2.2",
"@mantine/modals": "^7.2.2",
"@mantine/notifications": "^7.2.2",
"@mantine/nprogress": "^7.2.2",
"@tabler/icons-react": "^2.40.0",
"@tanstack/react-query": "5.8.4",
"@tanstack/react-table": "^8.10.7",
"@vercel/analytics": "^1.1.1",
"chart.js": "^4.4.0",
"dayjs": "^1.11.10",
"ky": "^1.1.3",
"mantine-react-table": "2.0.0-alpha.5",
"next": "14.0.2",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.48.2",
"react-use": "17.4.0",
"stylis-plugin-rtl": "^2.1.1",
"zod": "^3.22.4",
"zustand": "4.4.6"
},
"devDependencies": {
"@commitlint/cli": "18.4.1",
"@commitlint/config-conventional": "18.4.0",
"@next/eslint-plugin-next": "^14.0.2",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/nextjs": "^7.5.3",
"@storybook/preview-api": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.0",
"@testing-library/user-event": "14.5.1",
"@types/jest": "29.5.8",
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.53.0",
"eslint-config-next": "14.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.1.0",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.11.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.1.0",
"standard-version": "9.5.0",
"storybook": "^7.5.3",
"storybook-dark-mode": "^3.0.1",
"typescript": "5.2.2"
}
}