-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
94 lines (94 loc) · 3.71 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@deck.gl-community/editable-layers": "^9.0.0-alpha.1",
"@deck.gl/aggregation-layers": "^9.0.1",
"@deck.gl/carto": "^9.0.1",
"@deck.gl/core": "^9.0.1",
"@deck.gl/extensions": "^9.0.1",
"@deck.gl/geo-layers": "^9.0.1",
"@deck.gl/google-maps": "^9.0.1",
"@deck.gl/layers": "^9.0.1",
"@deck.gl/mesh-layers": "^9.0.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@formatjs/intl-localematcher": "^0.4.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.125",
"@mui/material": "^5.11.16",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@testing-library/user-event": "^12.8.1",
"@turf/bbox-clip": "^6.3.0",
"@turf/bbox-polygon": "^6.3.0",
"@turf/boolean-intersects": "^6.3.0",
"@turf/boolean-within": "^6.3.0",
"@turf/helpers": "^6.3.0",
"@turf/intersect": "^6.3.0",
"@turf/invariant": "^6.3.0",
"@turf/union": "^6.3.0",
"@turf/kinks": "^6.3.0",
"dequal": "^2.0.2",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"h3-js": "^3.7.2",
"husky": "^4.3.8",
"lerna": "6.6.2",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"patch-package": "6.4.7",
"quadbin": "^0.1.9",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^6.5.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"typescript": "^4.2.3",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"scripts": {
"build": "yarn clean:build && NODE_ENV=production lerna run build --stream",
"build:watch": "lerna run build:watch --stream --parallel",
"build:clean": "yarn clean:all && yarn install && yarn build && yarn test",
"clean:all": "yarn clean:node_modules && yarn clean:build && yarn clean:coverage",
"clean:node_modules": "rm -rf node_modules && for d in packages/*/node_modules; do rm -rf $d; done",
"clean:build": "rm -rf dist && for d in packages/*/dist; do rm -rf $d; done",
"clean:coverage": "rm -rf coverage ./.nyc_output ./reports && for d in packages/*/coverage; do rm -rf $d; done",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run --parallel lint:fix",
"test": "lerna run lint --stream && lerna run test --stream",
"test:watch": "lerna run --parallel test:watch",
"test:coverage": "lerna run --parallel test:coverage && node scripts/mergeCoverage.js",
"link-all": "lerna exec --parallel yarn link",
"unlink-all": "lerna exec --parallel yarn unlink",
"link-deck": "yarn link @deck.gl/core @deck.gl/layers @deck.gl/geo-layers @deck.gl/google-maps @deck.gl/carto @deck.gl/extensions",
"unlink-deck": "yarn unlink @deck.gl/core @deck.gl/layers @deck.gl/geo-layers @deck.gl/google-maps @deck.gl/carto @deck.gl/extensions",
"storybook:start": "lerna --scope @carto/react-ui exec -- npm run storybook:start",
"storybook:build": "lerna --scope @carto/react-ui exec -- npm run storybook:build",
"storybook:publish": "lerna --scope @carto/react-ui exec -- npm run storybook:publish",
"publish:prerelease": "yarn run build:clean && lerna publish --dist-tag prerelease --force-publish --preid alpha",
"publish:release": "yarn run build:clean && lerna publish --force-publish",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"yarn lint:fix"
],
"*.+(js|jsx|json|css|md)": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}