This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"scripts": {
"dev": "yarn run webpack-dev-server --config-register @babel/register --env.mode development --open --hot",
"prod": "rimraf build && babel src --out-dir build --ignore \"src/**/__tests__\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "cat ./coverage/lcov.info | codecov",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"format:check": "prettier --list-different \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --fix",
"validate": "concurrently \"yarn run format:check\" \"yarn run lint\" \"yarn run test\""
},
"license": "GPL-3.0",
"name": "react-d3-ggplot",
"version": "1.3.0",
"description": "React and D3 visualization components",
"main": "build/index.js",
"author": "Pablo Lorenzo",
"repository": {
"type": "git",
"url": "https://github.com/Ll2NZ/react-d3-ggplot.git"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@testing-library/react": "^9.1.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"codecov": "^3.3.0",
"concurrently": "^4.1.2",
"d3-collection": "^1.0.7",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.24",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"d3-array": "^2.3.1",
"d3-axis": "^1.0.12",
"d3-format": "^1.3.2",
"d3-interpolate": "^1.3.2",
"d3-scale": "^3.1.0",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 ChromeAndroid versions",
"last 1 Firefox versions",
"last 1 FirefoxAndroid versions",
"last 1 Safari versions",
"last 1 iOS versions",
"last 1 Edge versions",
"last 1 Opera versions",
"last 1 OperaMobile versions"
]
}