-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "fluffy-codec-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"qa": "biome ci",
"qa-fix": "npm run format; npm run lint",
"format": "biome format --write",
"lint": "biome lint --write; biome check --write",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@fluffylabs/shared-ui": "^0.8.2",
"@typeberry/lib": "^0.5.11",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"jsdom": "^29.1.0",
"tailwindcss": "^4.2.3",
"typescript": "^5.9.3",
"vite": "^8.0.9",
"vitest": "^4.1.0"
}
}