-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
{
"name": "@anonymity94/d3-force-graph",
"version": "0.0.17",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"release": "npm publish --access public"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/d3": "^7.1.0",
"@types/numeral": "^2.0.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.4.2",
"babel-preset-env": "^1.7.0",
"cssnano": "4.1.11",
"d3": "^7.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.2",
"eslint-plugin-react-hooks": "^4.3.0",
"less": "^4.1.2",
"postcss": "^8.4.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.68.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"ahooks": "^3.1.10",
"d3": "^7.3.0",
"numeral": "^2.0.6",
"save-svg-as-png": "^1.4.17"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"repository": {
"type": "git",
"url": "[email protected]:Anonymity94/d3-force-graph.git"
},
"bugs": {
"url": "https://github.com/Anonymity94/d3-force-graph/issues"
},
"homepage": "https://github.com/Anonymity94/d3-force-graph",
"keywords": [
"d3",
"react",
"svg",
"chart",
"visualization"
]
}