-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
61 lines (61 loc) · 2.13 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
{
"name": "hpcc-js",
"version": "3.4.0",
"description": "HPCC Visualization Framework",
"private": true,
"type": "module",
"jsdelivr": "dist/index.umd.min.js",
"workspaces": [
"packages/*",
"demos/*"
],
"scripts": {
"uninstall": "lerna clean && rimraf --glob packages/**/node_modules demos/**/node_modules apps/**/node_modules 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-node": "vitest run --project node",
"test": "lerna run test",
"test-all": "vitest run",
"publish": "lerna publish from-package --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-root-major": "npx npm-check-updates -u",
"update": "run-p update-workspaces update-root",
"update-major": "run-p update-major-workspaces update-major root"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@vitest/browser": "3.0.4",
"@vitest/coverage-v8": "3.0.4",
"eslint": "9.15.0",
"eslint-plugin-react-hooks": "5.0.0",
"lerna": "8.1.9",
"npm-run-all": "4.1.5",
"playwright": "1.49.0",
"rimraf": "5.0.10",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite": "6.0.11",
"vite-plugin-css-injected-by-js": "3.5.2",
"vite-plugin-static-copy": "2.2.0",
"vite-plugin-inspect": "10.1.0",
"vitest": "3.0.4"
},
"overrides": {
"d3-color": "3.1.0",
"cross-spawn": "~7.0.5"
},
"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"
}