-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
{
"name": "genify",
"version": "1.0.0",
"description": "Build spotify playlists from saved music based on their type and genre.",
"main": "app/entry.tsx",
"type": "module",
"scripts": {
"dev": "bun -b vite dev",
"build": "bun run lint; bun -b vite build",
"lint": "bun -b eslint . ; bun -b tsc",
"eslint-inspect": "bun -b eslint-config-inspector",
"clean": "rm -r node_modules dist ; bun i",
"preview": "bun -b vite preview",
"deploy": "bun run build && fish deploy.fish",
"upgrade": "rm -I -r node_modules bun.lock* dist; bun update --latest && bun i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomkel/genify.git"
},
"author": "Tommy Kelly",
"license": "AGPL-3.0-or-later",
"private": "true",
"bugs": {
"url": "https://github.com/tomkel/genify/issues"
},
"homepage": "https://github.com/tomkel/genify#readme",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource-variable/roboto-flex": "^5.2.6",
"@mui/icons-material": "^7.3.0",
"@mui/material": "^7.3.0",
"@mui/system": "^7.3.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"immer": "^10.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.7.1",
"zustand": "^5.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@eslint/config-inspector": "^1.1.0",
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin": "^5.2.2",
"@types/bun": "^1.2.19",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/parser": "^8.39.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"eslint": "^9.32.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-barrel-files": "^3.0.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"lightningcss": "^1.30.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^7.0.6",
"vite-tsconfig-paths": "^5.1.4"
}
}