-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.24 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.24 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
{
"name": "wigglystuff",
"scripts": {
"dev-copy-btn": "./node_modules/.bin/esbuild js/copybutton/widget.js --bundle --outfile=wigglystuff/static/copybutton.js --format=esm --watch --minify",
"build-three-widget": "./node_modules/.bin/esbuild js/three-widget/widget.js --bundle --outfile=wigglystuff/static/three-widget.js --format=esm --minify",
"dev-three-widget": "./node_modules/.bin/esbuild js/three-widget/widget.js --bundle --outfile=wigglystuff/static/three-widget.js --format=esm --watch --minify",
"build-graph-widget": "./node_modules/.bin/esbuild js/graph-widget/widget.js --bundle --outfile=wigglystuff/static/graph-widget.js --format=esm --minify",
"dev-graph-widget": "./node_modules/.bin/esbuild js/graph-widget/widget.js --bundle --outfile=wigglystuff/static/graph-widget.js --format=esm --watch --minify",
"build-treemap": "./node_modules/.bin/esbuild js/treemap/widget.js --bundle --outfile=wigglystuff/static/treemap.js --format=esm --minify",
"dev-treemap": "./node_modules/.bin/esbuild js/treemap/widget.js --bundle --outfile=wigglystuff/static/treemap.js --format=esm --watch --minify",
"build-nested-table": "./node_modules/.bin/esbuild js/nested-table/widget.js --bundle --outfile=wigglystuff/static/nested-table.js --format=esm --minify",
"dev-nested-table": "./node_modules/.bin/esbuild js/nested-table/widget.js --bundle --outfile=wigglystuff/static/nested-table.js --format=esm --watch --minify",
"build-excalidraw": "./node_modules/.bin/esbuild js/excalidraw/widget.js --outfile=wigglystuff/static/excalidraw.js --format=esm --minify"
},
"dependencies": {
"@anywidget/react": "^0.1.0",
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-color": "^3.1.0",
"d3-drag": "^3.0.0",
"d3-force": "^3.0.0",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-zoom": "^3.0.0",
"driver.js": "^1.3.1",
"esbuild": "^0.25.1",
"hiplot": "^0.1.34-rc.200",
"react": "^19.0.0",
"three": "^0.170.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18"
}
}