-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
90 lines (90 loc) · 2.43 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
{
"name": "react-tree-graph",
"version": "8.0.3",
"description": "A react library for generating a graphical tree from data using d3",
"main": "dist/index.js",
"module": "dist/module/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jpb12/react-tree-graph.git"
},
"keywords": [
"d3",
"graph",
"react",
"svg",
"tree",
"ui"
],
"author": "James Brierley",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpb12/react-tree-graph/issues"
},
"homepage": "https://jpb12.github.io/react-tree-graph",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/react-webpack5": "^7.6.20",
"babel-jest": "^29.7.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-storybook": "^0.11.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rfdc": "^1.4.1",
"rollup": "^4.30.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-prettier": "^4.1.1",
"rollup-plugin-progress": "^1.1.2",
"storybook": "^7.6.20"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"d3-ease": "^2.0.0",
"d3-hierarchy": "^2.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./__tests__/startup.js"
],
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"startup.js"
]
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18 || ^19"
},
"scripts": {
"build": "rollup --config",
"coverage": "cat ./coverage/lcov.info | coveralls",
"eslint": "eslint src __tests__ .storybook",
"storybook-build": "storybook build -c .storybook -o docs",
"storybook-watch": "storybook dev -c .storybook --port 9000",
"test": "jest",
"version": "npm run build"
},
"sideEffects": false
}