-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.02 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
105
106
107
108
109
110
{
"name": "mantine-resource-timeline",
"description": "A resource timeline component built with Mantine",
"private": false,
"version": "7.1.1",
"type": "module",
"repository": {
"url": "git+https://github.com/jvllmr/mantine-resource-timeline.git",
"type": "git"
},
"homepage": "https://jvllmr.github.io/mantine-resource-timeline",
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"author": "Jan Vollmer <[email protected]>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "tsup",
"prepublish": "tsup",
"test:build": "publint --strict",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier -w ."
},
"files": [
"build",
"src"
],
"exports": {
".": {
"import": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./build/index.d.cts",
"default": "./build/index.cjs"
}
},
"./package.json": "./package.json"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@mantine/core": "^7.15.3",
"@mantine/dates": "^7.15.3",
"@mantine/hooks": "^7.15.3",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-storysource": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/preview-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"dayjs": "^1.11.13",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"publint": "^0.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"storybook": "^8.4.7",
"storybook-addon-mantine": "^5.0.0",
"storybook-dark-mode": "^4.0.2",
"tsup": "8.2.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7"
},
"keywords": [
"mantine",
"resource",
"scheduler",
"timeline",
"calendar",
"component",
"react"
],
"packageManager": "[email protected]",
"peerDependencies": {
"@mantine/core": "^7.10.2",
"@mantine/hooks": "^7.10.2",
"@tanstack/react-virtual": "^3.9.0",
"@use-gesture/react": "^10.3.1",
"dayjs": "^1.11.11",
"react": "^18.3.1 || ^19.0.0",
"react-dom": "^18.3.1 || ^19.0.0",
"valtio": "^2.1.0"
}
}