-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.93 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.93 KB
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
{
"name": "hpcc-js",
"version": "3.21.7",
"description": "HPCC Visualization Framework",
"private": true,
"type": "module",
"jsdelivr": "dist/index.umd.min.js",
"workspaces": [
"packages/*"
],
"scripts": {
"install-deps": "npx -y playwright install --with-deps",
"uninstall": "lerna clean && rimraf --glob packages/**/node_modules packages/**/package-lock.json demos/**/node_modules demos/**/package-lock.json tests/**/node_modules package-lock.json tests/**/package-lock.json node_modules",
"clean-root": "rimraf --glob build coverage dist lib* types temp tmp *.tsbuildinfo .vitepress/dist .vitepress/cache docs/api",
"clean": "lerna run clean --no-sort && npm run clean-root",
"build": "lerna run build",
"lint": "lerna run --no-bail lint",
"lint-fix": "lerna run --no-bail lint -- --fix",
"test-browser": "vitest run --project browser",
"test-browser-esm": "cd tests/browser-esm && npm i && npm test",
"test-browser-umd": "cd tests/browser-umd && npm i && npm test",
"test-node": "vitest run --project node",
"test-node-esm": "cd tests/node-esm && npm i && npm test",
"test-node-cjs": "cd tests/node-cjs && npm i && npm test",
"test-type-leaks": "cd tests/type-leaks && npm i && npm test",
"test": "lerna run test",
"test-ci": "cross-env ci=1 lerna run test",
"test-all": "vitest run",
"bump-point-versions": "lerna version patch --no-git-tag-version --yes --no-push",
"publish": "lerna publish from-package --yes",
"publish-force": "lerna publish patch --yes",
"update-workspaces": "lerna run update --no-sort --stream",
"update-major-workspaces": "lerna run update-major --no-sort --stream",
"update-root": "npx npm-check-updates -u -t minor",
"update-major-root": "npx npm-check-updates -u",
"update": "run-p update-workspaces update-root",
"update-major": "run-p update-major-workspaces update-major-root"
},
"devDependencies": {
"@types/esbuild-copy-static-files": "0.1.4",
"@typescript-eslint/parser": "8.58.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"cross-env": "10.1.0",
"esbuild": "0.28.0",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.0.1",
"lerna": "9.0.7",
"npm-run-all": "4.1.5",
"playwright": "1.59.1",
"rimraf": "6.1.3",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"vite": "7.3.2",
"vitepress": "1.6.4",
"vitest": "3.2.4"
},
"overrides": {
"axios": "1.15.0",
"d3-color": "3.1.0",
"@nx/devkit": {
"minimatch": "10.2.3"
},
"nx": {
"minimatch": "10.2.3"
},
"esbuild": "$esbuild",
"tar": "7.5.11",
"tmp": "0.2.5",
"typescript": "$typescript",
"vite": "$vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "HPCC Systems",
"license": "Apache-2.0",
"homepage": "https://github.com/hpcc-systems/Visualization"
}