-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.34 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
{
"name": "apvd",
"version": "0.1.0",
"description": "Area-Proportional Venn Diagrams",
"type": "module",
"author": {
"name": "Ryan Williams",
"email": "ryan@runsascoded.com"
},
"scripts": {
"dev": "vite",
"dev:ellipses": "vite --config vite.config.ellipses.ts",
"build": "tsc -b && vite build && vite build --config vite.config.ellipses.ts",
"build:ellipses": "vite build --config vite.config.ellipses.ts",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"scrns": "scrns",
"clean": "rm -rf node_modules/.vite dist"
},
"dependencies": {
"@apvd/client": "github:runsascoded/shapes#0f2f9b0037747c430feb226d169a831d6a76a727&path:/client",
"@apvd/worker": "github:runsascoded/shapes#0f2f9b0037747c430feb226d169a831d6a76a727&path:/apvd-wasm/ts",
"@apvd/wasm": "github:runsascoded/shapes#0f2f9b0037747c430feb226d169a831d6a76a727&path:/apvd-wasm/pkg",
"@rdub/agg-plot": "https://gitlab.com/runsascoded/js/agg-plot/-/archive/e9087eda0724f058d4d2657afd51d0c3f59193e6/agg-plot-e9087eda0724f058d4d2657afd51d0c3f59193e6.tar.gz",
"@types/pako": "^2.0.4",
"bootstrap": "^5.3.3",
"d3-svg-to-png": "^0.3.1",
"lodash": "^4.17.21",
"pako": "^2.1.0",
"plotly.js": "^2.35.3",
"react": "^18.3.1",
"react-bootstrap": "^2.10.7",
"react-dom": "^18.3.1",
"react-mathquill": "^1.0.4",
"react-plotly.js": "^2.6.0",
"react-resizable": "^3.0.5",
"react-scroll-wheel-handler": "^2.2.0",
"react-sparklines": "^1.7.0",
"save-svg-as-png": "^1.4.17",
"use-kbd": "^0.8.0",
"use-local-storage-state": "^19.5.0",
"use-prms": "github:runsascoded/use-prms#cf28edc59fea41899aca2ada69499cd11604f60e",
"use-session-storage-state": "^19.0.0"
},
"pnpm": {},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.19.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-plotly.js": "^2.6.3",
"@types/react-resizable": "^3.0.8",
"@types/react-sparklines": "^1.7.5",
"@vitejs/plugin-react": "^4.7.0",
"sass": "^1.83.1",
"scrns": "^0.2.1",
"typescript": "^5.7.3",
"vite": "^6.4.1",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.1.9"
}
}