-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2 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
{
"name": "react-resizable-donut-chart",
"version": "1.0.2",
"description": "react donut resizable chart",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types.d.ts",
"keywords": [
"react",
"svg",
"d3",
"resizable chart",
"donut chart",
"donut resizable chart"
],
"repository": {
"type": "git",
"url": "https://github.com/dev-ik/react-resizable-donut-chart.git"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"start": "react-scripts start",
"test": "tsc && jest --coverage",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0"
},
"author": "DevIK",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-scripts": "^5.0.1",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.85.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"d3": "^7.9.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}