-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "react-gauge-chart",
"version": "0.5.1",
"main": "dist/index",
"module": "dist/index",
"typings": "dist/index",
"homepage": "https://martin36.github.io/react-gauge-chart/",
"keywords": [
"visualization",
"react",
"gauge chart",
"speedometer"
],
"license": "MIT",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Martin36/react-gauge-chart"
},
"dependencies": {
"d3": "^7.6.1"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "rimraf dist",
"build": "NODE_ENV=production babel src/lib --out-dir dist --copy-files",
"build-page": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build-page",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"babel-preset-react-app": "^8.0.0",
"cross-env": "^5.2.1",
"gh-pages": "^2.1.1",
"react": "^17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^17.0.1",
"react-scripts": "4.0.0",
"rimraf": "^2.7.1"
},
"peerDependencies": {
"react": "^16.8.2 || ^17.0 || ^18.x",
"react-dom": "^16.8.2 || ^17.0 || ^18.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}