-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
113 lines (113 loc) · 3.4 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
110
111
112
113
{
"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",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@builder.io/partytown": "0.7.6",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@hookform/resolvers": "3.0.0",
"@mantine/core": "^6.0.5",
"@mantine/dates": "^6.0.5",
"@mantine/dropzone": "^6.0.5",
"@mantine/hooks": "^6.0.5",
"@mantine/modals": "^6.0.5",
"@mantine/next": "^6.0.5",
"@mantine/notifications": "^6.0.5",
"@mantine/nprogress": "^6.0.5",
"@tabler/icons-react": "^2.13.1",
"@tanstack/react-query": "4.28.0",
"@tanstack/react-table": "^8.8.5",
"axios": "^1.3.5",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.7",
"framer-motion": "10.10.0",
"jotai": "^2.0.3",
"mantine-react-table": "1.0.0-beta.1",
"next": "13.2.4",
"next-compose-plugins": "2.2.1",
"next-images": "1.8.4",
"next-pwa": "5.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.9",
"react-icons": "4.8.0",
"react-use": "17.4.0",
"sharp": "0.32.0",
"zod": "^3.21.4",
"zustand": "4.3.7"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@next/eslint-plugin-next": "13.2.4",
"@storybook/addon-essentials": "^7.0.0",
"@storybook/addon-interactions": "^7.0.0",
"@storybook/addon-links": "^7.0.0",
"@storybook/blocks": "^7.0.0",
"@storybook/nextjs": "^7.0.0",
"@storybook/react": "^7.0.0",
"@storybook/testing-library": "^0.0.14-next.2",
"@tanstack/react-query-devtools": "^4.29.0",
"@testing-library/dom": "9.2.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@types/react": "18.0.32",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-testing-library": "5.10.2",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"next-sitemap": "4.0.6",
"prettier": "2.8.7",
"standard-version": "9.5.0",
"storybook": "^7.0.0",
"storybook-dark-mode": "^2.1.1",
"typescript": "5.0.3"
}
}