-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "zingchart-react",
"version": "3.2.1",
"description": "ZingChart React Component wrapper to allow native react syntax for javascript charts, chart events, chart methods and chart styling.",
"author": "ZingSoft Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zingchart/zingchart-react.git"
},
"main": "dist/zingchart-react.cjs.js",
"module": "dist/zingchart-react.esm.js",
"jsnext:main": "dist/zingchart-react.es.js",
"homepage": "https://www.zingchart.com/",
"engines": {
"node": ">=14",
"npm": ">=5"
},
"keywords": [
"dashboard",
"zingchart",
"data visualization",
"charts",
"dataviz",
"react"
],
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"build:watch": "rollup -c -W",
"start": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"commit": "git-cz",
"test:unit": "mocha --config=./.configs/.mocharc.js"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"dependencies": {
"zingchart": "latest",
"zingchart-constants": "github:zingchart/zingchart-constants#master"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"chai": "^4.3.10",
"chai-fs": "^2.0.0",
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"react-scripts": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"web-vitals": "^3.5.0"
},
"files": [
"dist/*"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}