-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.67 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
{
"name": "m-90d2bb8",
"version": "0.1.1",
"description": "This package.json is not published to npm, modify the file in package/package.json",
"packageManager": "[email protected]",
"workspaces": [
"docs",
"package"
],
"repository": {
"url": "https://github.com/mantinedev/extension-template.git",
"type": "git"
},
"scripts": {
"clean": "rimraf package/dist",
"build": "rollup -c rollup.config.mjs && tsx scripts/generate-dts && tsx scripts/prepare-css",
"prettier:check": "prettier --check \"**/*.{ts,tsx,css,mdx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,css,mdx}\"",
"typecheck": "tsc --noEmit && cd docs && npm run typecheck",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --cache .",
"stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"test": "npm run syncpack && npm run prettier:check && npm run typecheck && npm run lint && npm run jest",
"release:patch": "tsx scripts/release patch && npm run docs:deploy",
"release:minor": "tsx scripts/release minor && npm run docs:deploy",
"release:major": "tsx scripts/release major && npm run docs:deploy",
"docgen": "tsx scripts/docgen",
"dev": "cd docs && npm run dev",
"docs:build": "npm run docgen && cd docs && npm run build",
"docs:deploy": "npm run docs:build && tsx scripts/nojekyll && gh-pages -d docs/out -t true",
"storybook": "storybook dev -p 8271",
"syncpack": "syncpack list-mismatches",
"syncpack:format": "syncpack format"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@mantine-tests/core": "^1.1.0",
"@mantine/core": "7.15.2",
"@mantine/hooks": "7.15.2",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/fs-extra": "^11",
"@types/identity-obj-proxy": "^3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/signale": "^1",
"@types/yargs": "^17.0.33",
"@vitejs/plugin-react": "^4.3.4",
"esbuild": "^0.24.0",
"esbuild-jest": "^0.5.0",
"eslint": "^9.15.0",
"eslint-config-mantine": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"fs-extra": "^11.2.0",
"gh-pages": "^6.2.0",
"hash-css-selector": "^1.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"mantine-docgen-script": "^1.3.1",
"new-github-release-url": "^2.0.0",
"open": "^10.1.0",
"postcss": "^8.4.49",
"postcss-preset-mantine": "1.17.0",
"prettier": "^3.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"rollup-plugin-banner2": "^1.3.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"rollup-plugin-postcss": "^4.0.2",
"signale": "^1.4.0",
"simple-git": "^3.27.0",
"storybook": "^8.4.5",
"storybook-dark-mode": "^4.0.2",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"syncpack": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.16.0",
"version-next": "^1.0.2",
"vite": "^6.0.1",
"yargs": "^17.7.2",
"zx": "^8.2.2"
}
}