-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
79 lines (79 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "deck.gl-community",
"license": "MIT",
"private": true,
"keywords": [
"webgl",
"visualization"
],
"repository": {
"type": "git",
"url": ""
},
"type": "module",
"workspaces": [
"examples/graph-layers/**",
"examples/editable-layers/**",
"examples/bing-maps/**",
"examples/leaflet/**",
"modules/*"
],
"scripts": {
"bootstrap": "ocular-bootstrap",
"build": "ocular-clean && ocular-build && lerna run build",
"lint": "ocular-lint",
"lint-fix": "ocular-lint --fix",
"prepublishOnly": "ocular-build && node -e \"const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('./package.json', {encoding: 'utf8'})); delete pkg.engines; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2)); console.log(pkg)\"",
"publish-beta": "ocular-publish beta",
"publish-prod": "ocular-publish prod",
"test": "lerna run test",
"test-ci": "ocular-lint && lerna run test",
"test-fast": "lerna run test",
"metrics": "ocular-metrics"
},
"devDependencies": {
"@deck.gl/aggregation-layers": "^9.0.12",
"@deck.gl/core": "^9.0.12",
"@deck.gl/layers": "^9.0.12",
"@deck.gl/mesh-layers": "^9.0.12",
"@luma.gl/constants": "^9.0.12",
"@luma.gl/core": "^9.0.12",
"@luma.gl/engine": "^9.0.12",
"@luma.gl/webgl": "^9.0.12",
"@probe.gl/test-utils": "^4.0.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.0",
"@types/bin-pack": "^1.0.3",
"@vitejs/plugin-react": "^4.2.1",
"bin-pack": "^1.0.2",
"datauri": "^4.1.0",
"esbuild": "^0.20.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.3.0",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"ndarray": "^1.0.19",
"ndarray-pixels": "^3.1.0",
"ocular-dev-tools": "2.0.0-alpha.34",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"puppeteer": "^22.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reify": "^0.20.12",
"sinon": "^17.0.1",
"tap-spec": "^5.0.0",
"typescript": "^5.4.0",
"vitest": "^1.2.2"
},
"resolutions": {
"react": "18.2.0",
"typescript": "^5.4.0"
},
"volta": {
"node": "20.11.1",
"yarn": "4.3.1"
},
"packageManager": "[email protected]"
}