forked from clayrisser/react-gantt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "react-gantt",
"version": "2.1.8",
"description": "Gantt chart react component",
"homepage": "https://github.com/codejamninja/react-gantt",
"bugs": {
"url": "https://github.com/codejamninja/react-gantt/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Jam Risser",
"email": "[email protected]",
"url": "https://codejam.ninja"
},
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/codejamninja/react-gantt"
},
"scripts": {
"build": "npm run build:demo && babel src -d lib",
"build:demo": "npm run clean && npm run test && parcel build demo/index.html -d demo/dist",
"clean": "rm -rf .cache lib demo/dist",
"lint": "eslint ./",
"lint:fix": "eslint ./",
"start": "npm run lint && parcel demo/index.html -p 8888 --open -d demo/dist",
"test": "npm run lint",
"prepublish": "npm run build"
},
"dependencies": {
"autobind-decorator": "^2.1.0",
"lodash": "^4.17.10",
"moment": "^2.22.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"node-sass": "^4.9.3",
"parcel-bundler": "^1.10.2"
},
"engines": {
"node": ">=4.0.0"
},
"eslintIgnore": [
"demo/dist",
".cache",
"lib"
]
}