forked from esnet/react-timeseries-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.05 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
{
"name": "react-timeseries-charts",
"version": "0.14.0",
"description": "Declarative timeseries charts",
"keywords": [
"d3",
"charts",
"react",
"timeseries"
],
"homepage": "http://software.es.net/react-timeseries-charts",
"main": "lib/entry",
"author": "ESnet Tools Team <tools@es.net>",
"repository": "esnet/react-timeseries-charts",
"bugs": {
"url": "https://github.com/esnet/react-timeseries-charts/issues"
},
"scripts": {
"docs": "echo \"*** Building API docs\n\" && react-docgen src/components -x js -o src/website/packages/charts/api/docs.json --pretty",
"lint": "eslint src/components/*.js",
"test": "npm run lint",
"build": "echo \"*** Building lib\n\" && rm -rf lib/* && babel src/components --optional runtime --stage 0 --out-dir lib/components && babel src/js --optional runtime --stage 0 --out-dir lib/js && babel src/entry.js --optional runtime --stage 0 --out-file lib/entry.js",
"start-website": "react-scripts start",
"build-website": "echo \"*** Building website\n\" && rm -rf docs && react-scripts build && mv build docs",
"precommit": "lint-staged",
"prettier": "prettier --print-width 100 --tab-width 4 --write \"./src/**/*.js\""
},
"lint-staged": {
"*.js": [
"prettier --print-width 100 --tab-width 4 --write",
"git add"
]
},
"pre-commit": [
"lint",
"build"
],
"license": "BSD-3-Clause-LBNL",
"dependencies": {
"array.prototype.fill": "^1.0.1",
"babel-runtime": "^6.23.0",
"colorbrewer": "^1.0.0",
"d3-axis": "^1.0.8",
"d3-ease": "^1.0.3",
"d3-format": "^1.2.0",
"d3-interpolate": "^1.1.5",
"d3-scale": "^1.0.6",
"d3-scale-chromatic": "^1.1.1",
"d3-selection": "^1.1.0",
"d3-shape": "^1.2.0",
"d3-time": "^1.0.7",
"d3-time-format": "^2.0.5",
"d3-transition": "^1.1.0",
"dom-resize": "^1.0.3",
"flexbox-react": "^4.3.3",
"invariant": "^2.1.1",
"merge": "^1.2.0",
"moment": "^2.18.1",
"moment-duration-format": "^1.3.0",
"prop-types": "^15.5.10",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"create-react-class": "^15.6.2",
"dsv-loader": "^2.0.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^1.0.5",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.3",
"lint-staged": "^3.4.0",
"pondjs": "^0.8.8",
"prettier": "^1.9.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-docgen": "^2.9.1",
"react-dom": "^16.2.0",
"react-hot-loader": "4.1.2",
"react-markdown": "^2.4.4",
"react-router": "^3.2.0",
"react-scripts": "1.0.17",
"react-select": "^1.1.0",
"ringjs": "0.0.1"
},
"peerDependencies": {
"pondjs": "^0.8.0",
"react": "^15.3.1 || ^16.0"
}
}