-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.91 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
91
92
93
94
95
96
97
{
"name": "akvo-charts",
"version": "1.3.4",
"description": "Echarts Wrapper for React Component",
"author": "dedenbangkit",
"license": "AGPL-3.0",
"repository": "akvo/akvo-charts",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=14.x"
},
"contributors": [
{
"name": "Deden Bangkit",
"email": "[email protected]",
"url": "https://github.com/dedenbangkit"
},
{
"name": "Akvo Tech Consultancy",
"email": "[email protected]",
"url": "https://github.com/akvo"
}
],
"keywords": [
"charts",
"akvo",
"component",
"frontend",
"react",
"react-component"
],
"homepage": "https://akvo.github.io/akvo-charts/",
"bugs": {
"url": "https://github.com/akvo/akvo-charts/issues"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs --css-modules 'ae-[local]'",
"start": "microbundle-crl watch --no-compress --format modern,cjs --css-module 'ae-[local]'",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build ",
"test:build": "run-s build",
"test:lint": "eslint --config .eslintrc.json ./src/ --ext .js,.jsx",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build --nojekyll"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "5",
"@testing-library/react": "12",
"cross-env": "^7.0.2",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-export": "^0.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"jest-canvas-mock": "^2.5.2",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^5.0.1",
"react-test-renderer": "16.13.1",
"standard-version": "^9.5.0",
"typescript": ">=2.7"
},
"files": [
"dist"
],
"dependencies": {
"echarts": "^5.5.1",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"postcss-flexbugs-fixes": "^5.0.2",
"topojson-client": "^3.1.0"
}
}