forked from visgl/hubble.gl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.99 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
{
"name": "hubble.gl",
"version": "1.1.0",
"private": "true",
"description": "Hubble.gl is a powerful open source animation tool for large-scale data sets.",
"repository": "https://github.com/uber/hubble.gl.git",
"author": "Chris Gervang <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"checkjs": "tsc --noEmit --allowJs --checkJs --target ES5 src/*.js",
"clean": "ocular-clean",
"build": "ocular-clean && ocular-build && lerna run build",
"version": "ocular-build core",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish": "ocular-publish",
"test": "ocular-test",
"test-fast": "ocular-test fast",
"test-node": "ocular-test node",
"test-browser": "ocular-test browser",
"bench": "ocular-test bench",
"bench-browser": "ocular-test bench-browser",
"metrics": "ocular-metrics"
},
"workspaces": [
"modules/*"
],
"keywords": [
"webgl",
"visualization",
"vis.gl",
"deck.gl",
"kepler.gl",
"video"
],
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/register": "^7.12.1",
"@deck.gl/core": "^8.2.0",
"@deck.gl/geo-layers": "^8.2.0",
"@deck.gl/mesh-layers": "^8.2.0",
"@deck.gl/layers": "^8.2.0",
"@deck.gl/react": "^8.2.0",
"@deck.gl/mapbox": "^8.2.0",
"@loaders.gl/json": "^2.3.3",
"@loaders.gl/video": "^2.3.3",
"@luma.gl/debug": "^8.2.0",
"@luma.gl/engine": "^8.2.0",
"@luma.gl/shadertools": "^8.2.0",
"@probe.gl/bench": "^3.2.1",
"@probe.gl/test-utils": "^3.2.1",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"coveralls": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-uber-es2015": "^3.1.2",
"eslint-config-uber-jsx": "^3.3.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.10",
"lerna": "^3.16.4",
"lodash": "4.17.19",
"kepler.gl": "^2.3.2",
"ocular-dev-tools": "^0.1.10",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"prettier": "^1.18.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.1.3",
"react-map-gl": "^5.2.10",
"react-virtualized": "^9.21.0",
"styled-components": "^4.4.1"
},
"resolutions": {
"@deck.gl/aggregation-layers": "8.2.0",
"@deck.gl/core": "8.2.0",
"@deck.gl/extensions": "8.2.0",
"@deck.gl/geo-layers": "8.2.0",
"@deck.gl/mesh-layers": "8.2.0",
"@deck.gl/layers": "8.2.0",
"@deck.gl/react": "8.2.0",
"@deck.gl/mapbox": "8.2.0",
"@luma.gl/constants": "8.2.0",
"@luma.gl/core": "8.2.0",
"@luma.gl/debug": "8.2.0",
"@luma.gl/engine": "8.2.0",
"@luma.gl/gltools": "8.2.0",
"@luma.gl/experimental": "8.2.0",
"@luma.gl/shadertools": "8.2.0",
"@luma.gl/webgl": "8.2.0"
}
}