This repository has been archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.61 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vx-typescript-kitchensink",
"description": "Repo to test type definitions for vx",
"author": "jackdbd <[email protected]> (http://www.giacomodebidda.com/)",
"homepage": "https://jackdbd.github.io/vx-typescript-kitchensink",
"repository": "[email protected]:jackdbd/vx-typescript-kitchensink.git",
"version": "1.0.0",
"main": "src/index.tsx",
"license": "MIT",
"private": true,
"scripts": {
"build": "react-scripts build",
"ci": "yarn test && yarn coverage",
"clean": "rimraf build",
"coverage": "codecov",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"format": "prettier --write '{,!(node_modules)/}**/*.{js,jsx,ts,tsx}'",
"lint": "yarn lint:css && yarn && yarn lint:ts",
"lint:css": "stylelint --config .stylelintrc.json --formatter verbose './src/**/*.{css,js,jsx,ts,tsx}'",
"lint:ts": "tslint --config tslint.json --project tsconfig.json",
"ncu": "ncu",
"ncuu": "ncu --upgrade",
"nuke": "rimraf node_modules && rm yarn.lock",
"predeploy": "yarn clean && yarn build",
"start": "react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
"@vx/annotation": "0.0.189",
"@vx/axis": "0.0.189",
"@vx/bounds": "0.0.189",
"@vx/brush": "0.0.189",
"@vx/chord": "0.0.189",
"@vx/clip-path": "0.0.189",
"@vx/curve": "0.0.189",
"@vx/drag": "0.0.189",
"@vx/event": "0.0.189",
"@vx/geo": "0.0.189",
"@vx/glyph": "0.0.189",
"@vx/gradient": "0.0.189",
"@vx/grid": "0.0.189",
"@vx/group": "0.0.189",
"@vx/heatmap": "0.0.189",
"@vx/hierarchy": "0.0.189",
"@vx/legend": "0.0.189",
"@vx/marker": "0.0.189",
"@vx/mock-data": "0.0.189",
"@vx/network": "0.0.189",
"@vx/pattern": "0.0.189",
"@vx/point": "0.0.189",
"@vx/responsive": "0.0.189",
"@vx/scale": "0.0.189",
"@vx/shape": "0.0.189",
"@vx/stats": "0.0.189",
"@vx/text": "0.0.189",
"@vx/threshold": "0.0.189",
"@vx/tooltip": "0.0.189",
"@vx/voronoi": "0.0.189",
"@vx/zoom": "0.0.189",
"d3-array": "2.2.0",
"d3-format": "1.3.2",
"d3-geo": "1.11.3",
"d3-hierarchy": "1.1.8",
"d3-path": "1.0.7",
"d3-random": "1.1.2",
"d3-scale": "3.0.0",
"d3-scale-chromatic": "1.3.3",
"d3-shape": "1.3.5",
"d3-time-format": "2.1.3",
"geojson": "0.5.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-scripts": "3.0.1",
"styled-components": "4.2.0",
"topojson-client": "3.0.0",
"typescript": "3.4.5"
},
"devDependencies": {
"@types/d3-array": "2.0.0",
"@types/d3-chord": "1.0.9",
"@types/d3-format": "1.3.1",
"@types/d3-geo": "1.11.1",
"@types/d3-hierarchy": "1.1.6",
"@types/d3-path": "1.0.8",
"@types/d3-random": "1.1.2",
"@types/d3-scale": "2.1.1",
"@types/d3-scale-chromatic": "1.3.1",
"@types/d3-shape": "1.3.1",
"@types/d3-time-format": "2.1.1",
"@types/jest": "24.0.13",
"@types/node": "12.0.2",
"@types/react": "16.8.18",
"@types/react-dom": "16.8.4",
"@types/styled-components": "4.1.15",
"@types/topojson-client": "3.0.0",
"@types/topojson-specification": "1.0.1",
"gh-pages": "2.0.1",
"npm-check-updates": "3.1.9",
"prettier": "1.17.1",
"rimraf": "2.6.3",
"stylelint": "10.0.1",
"stylelint-config-recommended": "2.2.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.7.0",
"tslint": "5.16.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"keywords": [
"d3",
"react",
"typescript",
"visualization",
"vx"
]
}