forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.5 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
{
"name": "deck.gl-monorepo",
"description": "WebGL-powered visualization framework for large-scale datasets",
"license": "MIT",
"private": true,
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/deck.gl.git"
},
"workspaces": [
"modules/*"
],
"resolution_comments": {
"escaper": "v2 has an invalid main field in package.json, breaks esbuild during browser test"
},
"resolutions": {
"escaper": "3.0.6"
},
"scripts": {
"bootstrap": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn && ocular-bootstrap",
"postinstall": "./scripts/postinstall.sh",
"clean": "ocular-clean",
"build": "ocular-clean && ocular-build && lerna run build && node scripts/typed-entry.js",
"version": "ocular-build core",
"lint": "ocular-lint",
"cover": "ocular-test cover",
"publish": "ocular-publish",
"start": "open https://deck.gl/docs/get-started/getting-started",
"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",
"link-luma": "yarn && (cd node_modules && mv luma.gl luma.orig && ln -s ../../luma.gl/modules/core)",
"unlink-luma": "(cd node_modules && mv luma.gl luma.ln && mv luma.orig luma.gl)",
"update-release-branch": "scripts/update-release-branch.sh",
"bindings-precommit-tests": "scripts/bindings-precommit-hook.sh"
},
"browser": {
"jsdom": false
},
"devDependencies": {
"@arcgis/core": "^4.21.0",
"@loaders.gl/csv": "^3.3.1",
"@loaders.gl/polyfills": "^3.3.1",
"@luma.gl/test-utils": "^8.5.16",
"@probe.gl/bench": "^3.5.4",
"@probe.gl/test-utils": "^3.5.4",
"@types/react": "^18.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-inline-webgl-constants": "^1.0.3",
"babel-plugin-remove-glsl-comments": "^0.1.0",
"babel-preset-minify": "^0.5.0",
"canvas": "^2.11.0",
"gl": "^6.0.0",
"glsl-transpiler": "^1.8.6",
"jsdom": "^20.0.0",
"ocular-dev-tools": "2.0.0-alpha.8",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-map-gl": "^5.1.0",
"s2-geometry": "^1.2.10",
"tape-catch": "^1.0.6"
},
"pre-commit": [
"test-fast",
"bindings-precommit-tests"
],
"engines": {
"node": ">=14"
},
"dependencies": {}
}