-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "vortex-web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"wasm": "wasm-pack build crate --dev --target web --out-dir ../src/wasm/pkg",
"wasm:release": "wasm-pack build crate --release --target web --out-dir ../src/wasm/pkg",
"dev": "npm run wasm && vite",
"build": "npm run wasm:release && tsc -b && vite build",
"check": "npm run wasm && npm run lint && npm run typecheck",
"preview": "vite preview",
"format": "prettier --write 'src/**/*.{ts,tsx,css}' '.storybook/**/*.ts'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,css}' '.storybook/**/*.ts'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc -b --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"apache-arrow": "^21.1.0",
"d3-hierarchy": "^3.1.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@storybook/addon-docs": "^10.3.3",
"@storybook/react-vite": "^10.3.3",
"@tailwindcss/vite": "^4.1.4",
"@types/d3-hierarchy": "^3.1.7",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^10.3.3",
"globals": "^16.0.0",
"prettier": "^3.8.1",
"storybook": "^10.3.3",
"tailwindcss": "^4.1.4",
"typescript": "~5.7.0",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.2"
}
}