forked from hms-dbmi/viv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.41 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
{
"name": "@vivjs/monorepo",
"version": "0.13.7",
"author": "Ilan Gold",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hms-dbmi/viv.git"
},
"bugs": {
"url": "https://github.com/hms-dbmi/viv/issues"
},
"homepage": "https://github.com/hms-dbmi/viv#readme",
"scripts": {
"dev": "pnpm -r dev",
"build": "pnpm -r --parallel build",
"clean": "pnpm -r exec -- rm -rf node_modules",
"test": "pnpm -r --parallel test",
"check-format": "prettier --check --ignore-path .gitignore tsconfig.json sites/avivator packages/",
"lint": "npm run check-format && eslint \"packages/*/src/**/*\" \"sites/avivator/src/**/*\"",
"format": "npm run check-format -- --write",
"version": "pnpm meta-updater && ./version.sh && git add ."
},
"dependencies": {
"@deck.gl/core": "~8.8.6",
"@deck.gl/geo-layers": "~8.8.6",
"@deck.gl/layers": "~8.8.6",
"@deck.gl/react": "~8.8.6",
"@luma.gl/constants": "~8.5.16",
"@luma.gl/core": "~8.5.16",
"@luma.gl/shadertools": "~8.5.16",
"@luma.gl/webgl": "~8.5.16"
},
"devDependencies": {
"@deck.gl/extensions": "~8.8.6",
"@deck.gl/mesh-layers": "~8.8.6",
"@deck.gl/test-utils": "~8.8.6",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@luma.gl/test-utils": "~8.5.16",
"@pnpm/meta-updater": "^0.0.6",
"@pnpm/types": "^8.4.0",
"@probe.gl/test-utils": "^3.5.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"esbuild": "^0.14.42",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"esno": "^0.16.3",
"gl": "^5.0.0",
"prettier": "^2.6.2",
"tap-spec": "^5.0.0",
"tape": "^5.5.3",
"tape-catch": "^1.0.6",
"tape-run": "^10.0.0",
"typescript": "^4.6.4",
"unbuild": "^0.7.4"
},
"devDependenciesMeta": {
"@esbuild-plugins/node-globals-polyfill": "Necessary to run `tape` with browser-like `tape-run`.",
"@esbuild-plugins/node-modules-polyfill": "Necessary to run `tape` with browser-like `tape-run`."
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"esbuild": "*",
"@loaders.gl/core": "3.2"
}
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"sideEffects": false
}