-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.49 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.49 KB
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
{
"name": "cl-react-graph",
"version": "5.1.0",
"description": "React D3 Charts",
"main": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"scripts": {
"build": "export NODE_ENV=production || set NODE_ENV=production && TS_NODE_PROJECT=\"tsconfig.json\" webpack",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"test": "jest"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"node_modules",
"docs",
"docs-src"
],
"all": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/infosum/cl-react-graph.git"
},
"keywords": [
"React",
"D3",
"Charts"
],
"author": "Rob Clayburn - Martin Lewis-Dalgarno - InfoSum",
"license": "MIT",
"bugs": {
"url": "https://github.com/infosum/cl-react-graph/issues"
},
"homepage": "https://infosum.github.io/cl-react-graph/",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-typescript": "^7.27.1",
"@babel/register": "^7.28.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/d3": "^7.4.3",
"@types/jest": "^30.0.0",
"@types/react": "*",
"@types/react-dom": "*",
"@types/webpack": "^5.28.5",
"@types/webpack-bundle-analyzer": "^4.7.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.3",
"d3": "^7.9.0",
"eslint": "^8.57.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"dependencies": {
"@juggle/resize-observer": "^3.4.0",
"@react-spring/web": "^9.7.5",
"color": "^4.2.3",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-chord": "^3.0.1",
"d3-color": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time-format": "^4.1.0",
"d3-transition": "^3.0.1",
"react-svg-tooltip": "0.0.11",
"react-use-gesture": "^9.1.3",
"react-use-measure": "^2.1.1",
"text-width": "^1.2.0"
}
}