forked from CartoDB/carto-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.44 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@deck.gl/core": "^8.4.10",
"@deck.gl/extensions": "^8.4.10",
"@deck.gl/google-maps": "^8.4.10",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@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",
"echarts": "^4.9.0",
"echarts-for-react": "^2.0.16",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"@turf/bbox-polygon": "^6.3.0",
"@turf/boolean-intersects": "^6.3.0",
"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",
"clean:node_modules": "rm -rf ./node_modules && lerna exec -- rm -rf ./node_modules ",
"clean:build": "rm -rf ./coverage ./.nyc_output ./reports && lerna exec -- rm -rf ./dist ./coverage",
"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",
"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",
"prerelease": "yarn run build:clean && lerna publish --dist-tag prerelease --force-publish --preid rc"
},
"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"
]
}
}