forked from DieterVanmoortel/react-timeseries-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.62 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
{
"name": "react-timeseries-charts",
"version": "0.17.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 <[email protected]>",
"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"
},
"lint-staged": {
"src/**/*.js": [
"prettier --print-width 100 --tab-width 4 --write 'src/**/*.js'",
"git add"
]
},
"license": "BSD-3-Clause-LBNL",
"dependencies": {
"array.prototype.fill": "^1.0.1",
"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-selection-multi": "^1.0.1",
"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",
"invariant": "^2.1.1",
"merge": "^2.1.0",
"moment": "^2.18.1",
"moment-duration-format": "^1.3.0",
"prop-types": "^15.5.10",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^6.3.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"create-react-class": "^15.6.2",
"dsv-loader": "^2.0.0",
"husky": "^1.1.3",
"lint-staged": "^3.4.0",
"pondjs": "^0.8.8",
"prettier": "^1.9.2",
"raw-loader": "^0.5.1",
"react": "^17.0.2",
"react-docgen": "^5.4.1",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.3",
"react-router": "^5.3.3",
"react-scripts": "^5.0.1",
"react-select": "^5.3.2",
"ringjs": "0.0.1"
},
"peerDependencies": {
"pondjs": "^0.9.0",
"react": "^17.0.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}