-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "sorta",
"version": "0.0.1",
"type": "module",
"description": "Web application for sorting your Spotify playlists using custom sort rules",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/alexesprit/sorta"
},
"scripts": {
"start": "vite",
"build": "vite build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"knip": "knip",
"knip:fix": "knip --fix",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"ci": "npm-run-all lint typecheck knip test build",
"prepare": "lefthook install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@inlang/paraglide-js": "2.7.0",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-slot": "1.2.4",
"@spotify/web-api-ts-sdk": "1.2.0",
"class-variance-authority": "0.7.1",
"lucide-react": "0.561.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@inlang/paraglide-js": "2.7.0",
"@tailwindcss/postcss": "4.1.18",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@types/node": "25.0.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "5.1.2",
"@vitest/ui": "4.0.15",
"autoprefixer": "10.4.22",
"clsx": "2.1.1",
"jsdom": "27.3.0",
"knip": "5.73.4",
"lefthook": "2.0.11",
"npm-run-all": "4.1.5",
"postcss": "8.5.6",
"tailwind-merge": "3.4.0",
"typescript": "5.7.2",
"vite": "7.2.7",
"vitest": "4.0.15"
}
}