-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
33 lines (33 loc) · 846 Bytes
/
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
{
"name": "gantt-chart-react-css-grid",
"version": "1.0.0",
"description": "Gantt chart in React with CSS grid",
"keywords": [
"gantt",
"chart",
"react",
"grid"
],
"dependencies": {
"classnames": "2.5.1",
"pluralize": "8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"esbuild": "^0.23.1",
"simplehttpserver": "^0.3.0",
"typescript": "4.1.3"
},
"scripts": {
"build": "esbuild src/index.tsx --bundle --jsx=automatic --sourcemap --outdir=public",
"run": "simplehttpserver public"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"packageManager": "[email protected]+sha512.de524adec81a6c3d7a26d936d439d2832e351cdfc5728f9d91f3fc85dd20b04391c038e9b4ecab11cae2b0dd9f0d55fd355af766bc5c1a7f8d25d96bb2a0b2ca"
}