forked from Kuechlin/mantine-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.41 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
{
"name": "mantine-data-grid",
"version": "0.0.18",
"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 <y.kuechlin@vws.app>",
"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.9.3",
"@mantine/core": "^5.0.0",
"@mantine/dates": "^5.0.0",
"@mantine/hooks": "^5.0.0",
"@tanstack/react-table": "^8.3.3",
"dayjs": "^1.11.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tabler-icons-react": "^1.54.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@faker-js/faker": "^7.3.0",
"@mantine/prism": "^5.0.0",
"@types/node": "^18.6.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react-markdown": "^8.0.3",
"react-router-dom": "^6.3.0",
"remark-gfm": "^3.0.1",
"rollup": "^2.77.1",
"rollup-plugin-visualizer": "^5.7.1",
"typescript": "^4.6.3",
"vite": "^3.0.3"
},
"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"
}
}