forked from seansfkelley/react-layered-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.51 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
{
"name": "react-layered-chart",
"version": "2.0.0-rc.5",
"description": "A high-performance canvas-based time series visualization in React.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"style": "react-layered-chart.css",
"author": "Palantir Technologies",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/palantir/react-layered-chart.git"
},
"scripts": {
"start": "webpack-dev-server --config webpack.config.hot.js --inline --content-base examples/build/ --host 0.0.0.0 --port 8085 --hot true",
"test": "mocha 'test/**/*.ts' && tslint --project tsconfig.json",
"prepublish": "tsc --project tsconfig-build.json && lessc --source-map styles/index.less react-layered-chart.css"
},
"devDependencies": {
"@types/assertion-error": "^1.0.30",
"@types/chai": "^3.4.34",
"@types/classnames": "0.0.32",
"@types/d3-scale": "^1.0.5",
"@types/es6-promise": "0.0.32",
"@types/immutability-helper": "^2.0.15",
"@types/lodash": "^4.14.48",
"@types/mocha": "^2.2.37",
"@types/moment": "^2.13.0",
"@types/react": "^15.0.16",
"@types/react-dom": "^0.14.23",
"@types/react-motion": "^0.0.21",
"@types/react-redux": "^4.4.37",
"@types/redux-debounced": "^0.2.16",
"@types/redux-logger": "^2.6.32",
"@types/reselect": "^2.0.27",
"@types/sinon": "^1.16.34",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"html-webpack-plugin": "^2.17.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.3.4",
"mocha-multi": "^0.7.2",
"mocha-osx-reporter": "^0.1.2",
"moment": "^2.13.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.6.1",
"sinon": "^1.17.4",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^1.3.3",
"ts-node": "^2.0.0",
"tslint": "^4.3.1",
"typescript": "^2.1.4",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.3.0"
},
"dependencies": {
"classnames": "^2.2.1",
"d3-scale": "^0.9.1",
"immutability-helper": "^2.0.0",
"lodash": "^4.0.0",
"react-motion": "^0.4.3",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-debounced": "^0.2.0",
"redux-thunk": "^2.1.1",
"reselect": "^2.5.1"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"keywords": [
"timeline",
"time",
"series",
"chart",
"canvas",
"react",
"component"
]
}