-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "spotify-queue",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "vite",
"dev:vercel": "vercel dev",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"type-check": "tsc --noEmit",
"type-check:api": "tsc -p tsconfig.api.json",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tanstack/react-query": "^5.80.6",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
"@tailwindcss/vite": "^4.1.8",
"@types/node": "^22.15.21",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vercel/node": "5.8.22",
"@vitejs/plugin-react": "^4.5.2",
"happy-dom": "20.10.6",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "4.1.9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}