-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.32 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.32 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vega-editor",
"homepage": "http://vega.github.io/editor",
"author": {
"name": "Vega",
"url": "https://vega.github.io"
},
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.5.0",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/eslint-plugin": "^1.6.9",
"@vitest/ui": "^4.0.11",
"autoprefixer": "^10.4.22",
"canvas": "^3.2.0",
"del-cli": "^7.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"gh-pages": "^6.3.0",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"playwright": "^1.59.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.8.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^5.9.3",
"vite": "^8.0.5"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@tippyjs/react": "^4.2.6",
"@types/d3": "^7.4.3",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"chromium-bidi": "^15.0.0",
"cytoscape": "^3.33.1",
"cytoscape-popper": "^4.0.1",
"d3-array": "^3.2.4",
"d3-geo-projection": "^4.0.0",
"d3-scale": "^4.0.2",
"elkjs": "^0.11.0",
"history": "^5.3.0",
"json-stringify-pretty-compact": "^4.0.0",
"jsonc-parser": "^3.3.1",
"lz-string": "^1.5.0",
"monaco-editor": "^0.55.1",
"prettier2": "npm:prettier@^2.0.0",
"rc-resize-observer": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.4",
"react-feather": "^2.0.10",
"react-paginate": "^8.3.0",
"react-portal": "^4.3.0",
"react-router": "^7.12.0",
"react-router-dom": "^7.13.2",
"react-select": "^5.10.2",
"react-split": "^2.0.14",
"tippy.js": "^6.3.7",
"tslib": "^2.8.1",
"typescript-eslint": "^8.54.0",
"vega-cli": "6.2.0",
"vega-datasets": "^3.2.1",
"vega-embed": "^7.1.0",
"vega-functions": "^6.1.1",
"vega-interpreter": "^2.2.1",
"vega-selections": "^6.1.2",
"vega-schema-url-parser": "^3.0.2",
"vega-themes": "^3.0.0",
"vega-tooltip": "^1.1.0",
"vega-typings": "^2.1.0",
"vitest": "^4.0.18",
"web-worker": "^1.5.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write"
]
},
"scripts": {
"start": "vite",
"build": "npm run clean && npm run vendor && npm run build:only",
"build:only": "vite build",
"preview": "vite preview",
"clean": "del-cli dist public/spec public/data",
"postbuild": "rsync --ignore-existing -r public/* dist",
"generate-example-images": "scripts/generate-example-images.sh",
"vendor": "scripts/vendor.sh",
"prepare": "npm run vendor",
"prettierbase": "prettier '{src,public}/**/*.{css,html}'",
"format": "eslint . --fix && npm run prettierbase -- --write",
"lint": "eslint . && npm run prettierbase -- --check",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test"
}
}