-
Notifications
You must be signed in to change notification settings - Fork 835
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "react-vis-master",
"version": "1.12.0",
"license": "MIT",
"author": "Visualization Team <[email protected]>",
"description": "Data visualization library based on React and d3.",
"private": true,
"workspaces": [
"packages/showcase",
"packages/react-vis",
"packages/website"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-common/react-vis.git"
},
"bugs": {
"url": "https://github.com/uber-common/react-vis/issues/new",
"email": "[email protected]"
},
"keywords": [
"d3",
"react",
"visualization",
"chart",
"es6",
"babel"
],
"scripts": {
"lint": "eslint .",
"remove-unpm-rfs": "./remove-refs-to-unpm.pl"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^1.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run remove-unpm-rfs && git add yarn.lock"
}
},
"volta": {
"node": "14.18.0",
"yarn": "1.22.4"
},
"resolutions": {
"js-beautify": "1.10.3",
"d3-color": "3.1.0"
}
}