forked from MaTeMaTuK/gantt-task-react
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 3.33 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
111
{
"name": "@ObeoNetwork/gantt-task-react",
"version": "0.6.1",
"description": "Interactive Gantt Chart for React with TypeScript.",
"author": "MaTeMaTuK <maksym.vikarii@gmail.com>",
"homepage": "https://github.com/ObeoNetwork/gantt-task-react",
"license": "MIT",
"repository": "ObeoNetwork/gantt-task-react",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "./dist/gantt-task-react.umd.js",
"module": "./dist/gantt-task-react.es.js",
"types": "./dist/index.d.ts",
"source": "src/index.tsx",
"keywords": [
"react",
"gantt",
"typescript",
"chart",
"svg",
"gantt-chart",
"gantt chart",
"react-gantt",
"task"
],
"scripts": {
"storybook": "storybook dev",
"build": "vite build && tsc",
"start": "vite --host",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint --ext .tsx src/**/*",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "yarn storybook build",
"deploy-storybook": "gh-pages -d storybook-static",
"build-storybook": "storybook build"
},
"dependencies": {
"@floating-ui/dom": "1.1.1",
"@floating-ui/react": "0.19.0",
"date-fns": "2.29.3"
},
"peerDependencies": {
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/plugin-transform-regenerator": "^7.20.5",
"@babel/types": "^7.20.7",
"@mdx-js/react": "^2.2.1",
"@mui/icons-material": "5.15.19",
"@mui/material": "5.15.19",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@rollup/plugin-image": "2.1.1",
"@storybook/addon-controls": "^7.6.7",
"@storybook/addon-docs": "^7.6.7",
"@storybook/addons": "^7.6.7",
"@storybook/channel-postmessage": "^7.6.7",
"@storybook/channel-websocket": "^7.6.7",
"@storybook/client-api": "^7.6.7",
"@storybook/mdx2-csf": "^1.1.0",
"@storybook/node-logger": "^7.6.7",
"@storybook/preview-web": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^27.5.1",
"@types/node": "^15.0.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "4.0.4",
"cross-env": "^7.0.3",
"doctrine": "^3.0.0",
"gh-pages": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"storybook": "7.6.7",
"typescript": "^5.1.6",
"vite": "4.4.9",
"vitest": "0.34.2"
},
"files": [
"dist"
],
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!react-dnd|core-dnd|@react-dnd|dnd-core|react-dnd-html5-backend)"
],
"moduleNameMapper": {
"/^.+\\.module\\.(css|sass|scss)$/": "identity-obj-proxy"
}
}
}