-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
{
"name": "frappe-gantt-react",
"version": "0.2.2",
"license": "MIT",
"main": "./index.js",
"types": "./typings/main.d.ts",
"author": {
"name": "Mohammed Abdulkereem",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/mohammed-io/frappe-gantt-react"
},
"bugs": {
"url": "https://github.com/mohammed-io/frappe-gantt-react/issues"
},
"keywords": [
"react",
"frappe gantt wrapper",
"gantt",
"svg",
"simple gantt",
"project timeline",
"interactive gantt",
"project management"
],
"dependencies": {
"frappe-gantt": "^0.3.0",
"moment": "^2.24.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.4.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"dist": "npm run tsc ;rollup -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tsc": "tsc -p tsconfig.prod.json"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@svgr/rollup": "^4.2.0",
"@types/jest": "24.0.12",
"@types/node": "11.13.9",
"@types/react": "16.8.15",
"@types/react-dom": "16.8.4",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"rollup": "^1.11.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-url": "^2.2.1",
"typescript": "3.4.5"
}
}