-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
119 lines (119 loc) · 4.14 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
{
"description": "A suite of 3D-enabled data editing layers for deck.gl",
"license": "MIT",
"private": true,
"author": "Georgios Karnas <[email protected]>",
"keywords": [
"webgl",
"visualization",
"overlay",
"layer"
],
"repository": {
"type": "git",
"url": "https://github.com/uber/nebula.gl"
},
"workspaces": [
"modules/*",
"examples/advanced"
],
"scripts": {
"start": "open http://nebula.gl/docs",
"start-example": "lerna run start-local --scope=example-advanced --stream",
"bootstrap": "lerna bootstrap --no-private",
"build": "lerna run build --no-private --stream",
"prettier": "prettier --write \"{modules,examples,test,dev-docs,docs,website}/**/*.{ts,tsx,js,md}\"",
"prettier-diff": "prettier --list-different \"{modules,examples,test,dev-docs,docs,website,}/**/*.{ts,tsx,js,md}\"",
"lint": "yarn run lint-yarn && eslint modules/**/src/**/* --ext ts,tsx,js",
"lint-yarn": "node ./scripts/lint-yarn.js",
"types-check": "lerna run types-check --stream",
"prepublish": "yarn run build",
"publish-prod": "yarn run bootstrap && yarn run build && yarn run test && lerna publish --no-private --force-publish --exact && ./scripts/changelog.sh",
"test": "yarn run lint && yarn run build && yarn run types-check && yarn run test-unit --run",
"test-r": "yarn run lint && yarn run build",
"test-fast": "yarn run test-node",
"test-ci": "yarn run lint && yarn run prettier-diff && yarn run build && yarn run types-check && yarn run test-cover",
"test-unit": "vitest",
"test-cover": "vitest --coverage --run",
"publish-docs": "./publish-docs.sh"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/register": "7.18.9",
"@deck.gl/core": "^8.8.23",
"@deck.gl/extensions": "^8.8.23",
"@deck.gl/geo-layers": "^8.8.23",
"@deck.gl/layers": "^8.8.23",
"@deck.gl/mesh-layers": "^8.8.23",
"@deck.gl/react": "^8.8.23",
"@types/geojson": "^7946.0.10",
"@types/react": "17.0.53",
"@types/react-dom": "17.0.18",
"@types/react-test-renderer": "^17.0.2",
"@types/styled-components": "^4.4.3",
"@types/uuid": "9.0.0",
"@types/viewport-mercator-project": "6.1.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitest/coverage-c8": "^0.28.2",
"babel-loader": "9.1.2",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-version-inline": "^1.0.0",
"coveralls": "^3.1.1",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-uber-es2015": "3.1.2",
"eslint-config-uber-jsx": "3.3.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lerna": "6.4.1",
"module-alias": "^2.2.2",
"pre-commit": "^1.2.2",
"prettier": "2.8.3",
"prettier-check": "2.0.0",
"pretty-quick": "^3.1.3",
"probe.gl": "^0.2.2",
"raw-loader": "^0.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.11",
"reify": "0.22.2",
"rollup-plugin-node-externals": "^5.1.0",
"rollup-plugin-visualizer": "^5.9.0",
"source-map-loader": "^0.2.4",
"tap-browser-color": "^0.1.2",
"tape": "4.11",
"tape-catch": "^1.0.6",
"transform-loader": "^0.2.4",
"ts-loader": "^9.4.2",
"typescript": "4.9.4",
"vite": "^4.0.4",
"vite-plugin-cp": "^1.0.0",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.28.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"resolutions_notes": [
"Note: tape 4.12 and higher no longer compares 0 and -0 equally...",
"Note: rollup treeshaking issue fixed in 3.10.1"
],
"resolutions": {
"rollup": "^3.10.1"
}
}