-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "earvibes",
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@9.4.0",
"scripts": {
"dev": "vite",
"build": "biome format --write && tsc && vite build",
"preview": "vite preview",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.17",
"babel-plugin-react-compiler": "^1.0.0",
"clsx": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^9.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tone": "^15.0.4",
"ts-pattern": "^5.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"jsdom": "^25.0.1",
"typescript": "^5.5.3",
"vite": "^5.3.1",
"vitest": "^2.1.9"
}
}