-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
93 lines (93 loc) · 2.59 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
{
"name": "mantine-data-grid",
"version": "0.2.3",
"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.11.1",
"@mantine/core": "^6.0.13",
"@mantine/dates": "^6.0.13",
"@mantine/hooks": "^6.0.13",
"@tabler/icons-react": "^2.22.0",
"@tanstack/react-table": "8.9.2",
"@tanstack/react-virtual": "3.0.0-beta.26",
"dayjs": "^1.11.8",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/modifiers": "6.0.1",
"@dnd-kit/sortable": "7.0.2",
"@dnd-kit/utilities": "3.2.1",
"@faker-js/faker": "7.6.0",
"@mantine/prism": "6.0.6",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@vitejs/plugin-react": "3.1.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"prettier": "2.8.7",
"react-router-dom": "6.10.0",
"rollup": "3.20.2",
"rollup-plugin-visualizer": "5.9.0",
"typescript": "4.9.5",
"vite": "4.2.1"
},
"peerDependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.6",
"@mantine/dates": "^6.0.6",
"@mantine/hooks": "^6.0.6",
"dayjs": "^1.11.7",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"dayjs": {
"optional": true
}
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}