-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.93 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.93 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
{
"name": "ewchart",
"version": "2.2.1",
"description": "chart for 2d",
"main": "build/index",
"author": {
"name": "qzruncode",
"web": "https://github.com/qzruncode"
},
"keywords": [
"d3",
"chart",
"react",
"svg",
"canvas"
],
"typings": "types/index.d.ts",
"files": [
"build",
"types",
"package.json",
"README.md"
],
"license": "ISC",
"scripts": {
"build": "webpack --config config/webpack.js --progress",
"fix:all": "npx eslint --fix src",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git@github.com:qzruncode/ewchart.git"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"peerDependencies": {
"d3": "^7.8.2",
"react": "^18.2.0"
},
"dependencies": {
"d3": "^7.8.2",
"react": "^18.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@svgr/webpack": "^6.5.1",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"less-loader": "^11.1.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"thread-loader": "^3.0.4",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0",
"webpackbar": "^5.0.2"
}
}