-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
75 lines (75 loc) · 2.75 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
{
"name": "l7plot",
"private": true,
"author": "yunji",
"license": "MIT",
"workspaces": [
"packages/*",
"storybook",
"website"
],
"scripts": {
"prepare": "husky install",
"bootstrap": "yarn",
"dev": "lerna run dev --stream --parallel --no-bail --ignore=l7plot-website",
"dev-l7lot": "lerna run dev --stream --scope=@antv/l7plot",
"dev-composite-layers": "lerna run dev --stream --scope=@antv/l7-composite-layers",
"dev-component": "lerna run dev --stream --scope=@antv/l7plot-component",
"dev-storybook": "lerna run dev --stream --scope=l7plot-storybook",
"dev-website": "lerna run dev --stream --scope=l7plot-website",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"prettier": "lerna run prettier",
"clean": "scripts/clean-deps.sh",
"test": "jest",
"test-live": "DEBUG_MODE=1 jest --watch __tests__/unit",
"test-cover": "jest --coverage",
"build": "lerna run build --stream --scope=@antv/l7*",
"build-l7lot": "lerna run build --stream --scope=@antv/l7plot",
"build-composite-layers": "lerna run build --stream --scope=@antv/l7-composite-layers",
"build-component": "lerna run build --stream --scope=@antv/l7plot-component",
"build-website": "lerna run build --stream --scope=l7plot-website",
"bundle": "lerna run build:umd --stream --scope=@antv/l7*",
"deploy-website": "lerna run deploy --stream --scope=l7plot-website",
"version": "node scripts/sync-version",
"prepublishOnly": "yarn build && yarn bundle",
"package-version": "lerna version",
"package-publish": "lerna publish from-package"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-node-resolve": "^13.0.2",
"@rollup/plugin-typescript": "^8.2.3",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"jest-electron": "^0.1.12",
"lerna": "^7.4.2",
"lint-staged": "^11.2.3",
"prettier": "^3.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typedoc": "^0.22.5",
"typescript": "^5.2.2"
},
"resolutions": {
"monaco-editor": "0.21.3"
},
"repository": "https://github.com/antvis/L7Plot.git"
}