-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
{
"name": "hpcc-js",
"version": "3.2.1",
"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 --stream update",
"update-root": "npx npm-check-updates -u -t minor",
"update-root-major": "npx npm-check-updates -u",
"update": "run-p update-workspaces update-root"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/browser": "2.1.5",
"@vitest/coverage-v8": "2.1.5",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "4.6.2",
"lerna": "8.1.9",
"npm-run-all": "4.1.5",
"playwright": "1.49.0",
"rimraf": "5.0.10",
"typescript": "5.6.3",
"vitest": "2.1.5"
},
"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"
}