-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
83 lines (83 loc) · 2.31 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
{
"name": "@hh.ru/react-d3-chart-graphs",
"version": "6.1.2",
"description": "A javascript library for building charts components made with React.js and D3.js",
"main": "dist/index.js",
"style": "dist/styles.css",
"files": [
"dist/styles.css",
"dist/index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node scripts/dev.js",
"build": "NODE_ENV='production' rollup -c --bundleConfigAsCjs",
"lint": "NODE_OPTIONS='--openssl-legacy-provider' eslint src/**/*.{js,jsx}",
"prepublish": "NODE_OPTIONS='--openssl-legacy-provider' yarn build",
"release": "npm publish --access=public"
},
"repository": {
"type": "git",
"url": "https://github.com/hhru/react-d3-chart-graphs"
},
"private": false,
"keywords": [
"react",
"graph",
"d3",
"javascript",
"react-component",
"bar-chart",
"stacked-bar-chart"
],
"author": {
"name": "Andrei Gladkov",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.9",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/preset-env": "7.18.9",
"@babel/preset-react": "7.18.6",
"@hh.ru/eslint-config": "15.1.1",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.3",
"@rollup/plugin-node-resolve": "15.1.0",
"babel-plugin-styled-components": "1.1.7",
"eslint": "6.3.0",
"eslint-config-prettier": "~2.9.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.11.0",
"lint-staged": "7.3.0",
"path": "0.12.7",
"postcss": "8.4.27",
"postcss-preset-env": "9.0.0",
"prettier": "1.18.2",
"prop-types": "~15.7.2",
"rollup": "3.27.0",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-terser": "7.0.2"
},
"dependencies": {
"d3-array": "1.2.0",
"d3-axis": "1.0.8",
"d3-drag": "^1.0.0",
"d3-force": "^1.0.0",
"d3-scale": "1.0.6",
"d3-selection": "^1.0.0",
"d3-shape": "1.2.0",
"d3-time": "1.0.7",
"d3-zoom": "^1.0.0",
"lodash.throttle": "4.1.1",
"react": "16.1.1",
"react-dom": "16.1.2",
"styled-components": "2.1.1"
},
"resolutions": {
"kind-of": "6.0.3"
}
}