forked from wamra/gantt-task-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.72 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.72 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@wamra/gantt-task-react",
"version": "0.6.17",
"description": "Interactive Gantt Chart for React with TypeScript",
"author": "WAMRA <wamra@users.noreply.github.com>",
"homepage": "https://github.com/wamra/gantt-task-react/blob/main/README.md#gantt-task-react",
"license": "MIT",
"contributors": [
{
"name": "MaTeMaTuK",
"url": "https://github.com/MaTeMaTuK"
},
{
"name": "Janlaywss",
"url": "https://github.com/Janlaywss"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/wamra/gantt-task-react.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"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.2",
"date-fns": "2.29.3"
},
"overrides": {
"typescript": "~5.1.6"
},
"peerDependencies": {
"@mui/icons-material": "^6.1.0",
"@mui/material": "^6.1.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@babel/plugin-transform-regenerator": "~7.20.5",
"@babel/types": "~7.20.7",
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@mdx-js/react": "~2.2.1",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@rollup/plugin-image": "2.1.1",
"@storybook/addon-controls": "~7.6.20",
"@storybook/addon-docs": "~7.6.20",
"@storybook/addons": "~7.6.20",
"@storybook/channel-postmessage": "~7.6.20",
"@storybook/channel-websocket": "~7.6.20",
"@storybook/client-api": "~7.6.20",
"@storybook/mdx2-csf": "~1.1.0",
"@storybook/node-logger": "~7.6.20",
"@storybook/preview-web": "~7.6.20",
"@storybook/react": "~7.6.20",
"@storybook/react-vite": "~7.6.20",
"@testing-library/jest-dom": "~5.16.5",
"@testing-library/react": "~16.0.1",
"@testing-library/user-event": "~14.2.6",
"@types/jest": "~27.5.2",
"@types/node": "~15.0.3",
"@types/react": "~18.3.12",
"@types/react-dom": "~18.3.1",
"@vitejs/plugin-react": "4.0.4",
"cross-env": "~7.0.3",
"doctrine": "~3.0.0",
"eslint": "^8.50.0",
"eslint-config-react-app": "^7.0.1",
"gh-pages": "~5.0.0",
"identity-obj-proxy": "~3.0.0",
"jsdom": "^25.0.1",
"mini-css-extract-plugin": "~2.7.7",
"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.8",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-scripts": "^5.0.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"storybook": "7.6.20",
"typescript": "~5.1.6",
"vite": "^4.5.5",
"vitest": "0.34.6"
},
"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"
}
}
}