forked from bradvatne/reaviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
144 lines (144 loc) · 3.8 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "reaviz",
"version": "1.0.1",
"description": "Data Visualization using React and D3.js",
"scripts": {
"start": "start-storybook",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"build": "rollup -c",
"test": "jest --env=jsdom"
},
"source": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jask-oss/reaviz.git"
},
"files": [
"dist"
],
"keywords": [
"react",
"reactjs",
"d3.js",
"d3",
"dataviz",
"charts",
"bar-chart",
"scatter-plot",
"area-chart",
"line-chart",
"pie-chart",
"sankey",
"hive-plot"
],
"author": "JASK",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jask-oss/reaviz/issues"
},
"homepage": "https://github.com/jask-oss/reaviz#readme",
"dependencies": {
"big-integer": "^1.6.42",
"chroma-js": "^2.0.3",
"classnames": "^2.2.6",
"d3-array": "^2.0.3",
"d3-ease": "^1.0.5",
"d3-format": "^1.3.0",
"d3-geo": "^1.11.3",
"d3-interpolate": "^1.2.0",
"d3-sankey": "^0.7.1",
"d3-scale": "^2.2.2",
"d3-shape": "^1.3.4",
"human-format": "^0.10.1",
"lodash-es": "^4.17.11",
"memoize-bind": "^1.0.3",
"popper.js": "^1.14.7",
"rdk": "^1.0.1",
"react-pose": "^4.0.8",
"react-scrolllock": "^4.0.1",
"react-sizeme": "^2.5.2",
"react-transition-group": "^2.5.3",
"topojson-client": "^3.0.0",
"world-atlas": "^1.1.4"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.3.1",
"@storybook/addon-centered": "^5.0.0",
"@storybook/addon-info": "^5.0.0",
"@storybook/addon-knobs": "^5.0.0",
"@storybook/addons": "^5.0.0",
"@storybook/react": "^5.0.0",
"@types/classnames": "^2.2.6",
"@types/d3-array": "^1.2.6",
"@types/d3-geo": "^1.11.1",
"@types/d3-sankey": "^0.7.4",
"@types/d3-scale": "^2.1.1",
"@types/d3-shape": "^1.3.1",
"@types/humanize-string": "^1.0.0",
"@types/jest": "^24.0.5",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.8.2",
"@types/topojson-client": "^3.0.0",
"autoprefixer": "^9.4.10",
"gh-pages": "^2.0.1",
"jest": "^24.1.0",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"postcss-focus-visible": "^4.0.0",
"react": "^16.8.4",
"react-docgen-typescript-loader": "^3.0.1",
"react-dom": "^16.8.4",
"react-markdown": "^4.0.6",
"react-testing-library": "^6.0.0",
"rollup": "^1.4.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-postcss-modules": "^2.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"setupFilesAfterEnv": [
"react-testing-library/cleanup-after-each.js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}