forked from Kuechlin/mantine-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.64 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
{
"name": "mantine-data-grid",
"version": "0.0.21",
"homepage": "https://kuechlin.github.io/mantine-data-grid/",
"repository": {
"type": "git",
"url": "https://github.com/Kuechlin/mantine-data-grid.git"
},
"license": "MIT",
"author": "Yannick Küchlin <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/mantine-data-grid.js",
"require": "./dist/mantine-data-grid.umd.cjs"
}
},
"main": "./dist/mantine-data-grid.umd.cjs",
"module": "./dist/mantine-data-grid.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"build:docs": "vite build -c vite.config.docs.ts",
"dev": "vite -c vite.config.docs.ts --port 3000",
"format": "prettier \"**/*.+(js|ts|tsx|css|scss|json|md|html)\" --write",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "11.10.5",
"@mantine/core": "5.6.3",
"@mantine/dates": "5.6.3",
"@mantine/hooks": "5.6.3",
"@tanstack/react-table": "8.5.18",
"@types/react-window": "^1.8.5",
"dayjs": "1.11.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tabler-icons-react": "^1.55.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@faker-js/faker": "7.6.0",
"@mantine/prism": "5.6.3",
"@types/node": "18.11.7",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"@vitejs/plugin-react": "2.2.0",
"eslint": "8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-markdown": "^8.0.3",
"react-router-dom": "6.4.2",
"react-window": "^1.8.7",
"remark-gfm": "^3.0.1",
"rollup": "^2.79.0",
"rollup-plugin-visualizer": "5.8.3",
"typescript": "4.8.4",
"vite": "3.2.1"
},
"peerDependencies": {
"@mantine/core": "^5.0.0",
"@mantine/dates": "^5.0.0",
"@mantine/hooks": "^5.0.0",
"dayjs": "^1.11.4",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"dayjs": {
"optional": true
}
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}