-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.75 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.75 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
77
78
79
80
81
82
83
{
"name": "mui-querybuilder",
"description": "Material UI Query Builder for React.",
"version": "2.0.0",
"license": "MIT",
"author": "Tiago Fernandez",
"homepage": "https://github.com/tiagofernandez/mui-querybuilder#readme",
"keywords": ["react", "mui", "material-ui", "query-builder", "querybuilder"],
"repository": {
"type": "git",
"url": "git+https://github.com/tiagofernandez/mui-querybuilder.git"
},
"bugs": {
"url": "https://github.com/tiagofernandez/mui-querybuilder/issues"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["/dist"],
"scripts": {
"build": "vite build",
"dev": "storybook dev -p 6006",
"build-storybook": "storybook build -o docs",
"check": "biome check --write .",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky",
"prepublishOnly": "npm run check && npm test && npm run build"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"dequal": "2.0.3"
},
"peerDependencies": {
"@emotion/react": ">=11.0.0",
"@emotion/styled": ">=11.0.0",
"@mui/icons-material": ">=7.0.0",
"@mui/material": ">=7.0.0",
"@mui/x-date-pickers": ">=8.0.0",
"date-fns": ">=3.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "7.3.11",
"@mui/material": "7.3.11",
"@mui/x-date-pickers": "8.28.5",
"@storybook/addon-essentials": "8.6.18",
"@storybook/addon-links": "8.6.18",
"@storybook/react": "8.6.18",
"@storybook/react-vite": "8.6.18",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@vitejs/plugin-react": "4.5.2",
"@vitest/coverage-v8": "3.2.1",
"date-fns": "4.1.0",
"husky": "9.1.7",
"jsdom": "26.1.0",
"lint-staged": "15.5.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"storybook": "8.6.18",
"typescript": "5.8.3",
"vite": "6.4.2",
"vite-plugin-dts": "4.5.4",
"vitest": "3.2.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": ["biome check --write --no-errors-on-unmatched"]
}
}