-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.38 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.38 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
{
"name": "pvm-debugger",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"format-check": "prettier --check 'src/**/*.{ts,tsx}'",
"format": "prettier --write .",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install --with-deps",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.1.7",
"@reduxjs/toolkit": "^2.9.0",
"@tanstack/react-virtual": "^3.10.9",
"@typeberry/lib": "^0.5.8",
"@typeberry/spectool-wasm": "0.23.0",
"@uiw/react-codemirror": "^4.25.1",
"baseline-browser-mapping": "^2.9.19",
"caniuse-lite": "^1.0.30001774",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"framer-motion": "^12.33.0",
"lodash": "^4.17.23",
"lucide-react": "^0.544.0",
"path-browserify": "^1.0.1",
"react": "^19.0.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.2.3",
"react-dropzone": "^14.3.8",
"react-intersection-observer": "^10.0.0",
"react-katex": "^3.1.0",
"react-redux": "^9.1.2",
"react-router": "^7.13.0",
"react-toastify": "^11.0.5",
"redux-persist": "^6.0.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@playwright/test": "^1.57.0",
"@swc/core": "^1.15.11",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.2",
"@types/lodash": "^4.17.7",
"@types/node": "^24.9.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/react-katex": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.19",
"esbuild": "^0.25.10",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"husky": "^9.1.1",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"postcss": "^8.4.39",
"prettier": "3.3.3",
"typescript": "^5.9.2",
"vite": "^7.3.1",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.18"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"npm run format",
"npm run lint"
]
},
"trustedDependencies": [
"@swc/core"
]
}