-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1023 Bytes
/
package.json
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": "orpheus",
"version": "0.1.0",
"description": "Get music recommendations based on artists, tracks, genres, and track attributes.",
"private": true,
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type:check": "tsc --noEmit",
"format:check": "prettier . --check",
"format:fix": "prettier . --write"
},
"dependencies": {
"@upstash/redis": "^1.34.3",
"clsx": "^2.1.1",
"next": "^15.0.1",
"react": "^19.0.0-rc-45804af1-20241021",
"react-dom": "^19.0.0-rc-45804af1-20241021",
"react-icons": "^5.3.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^8",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"spotify-api-types": "^0.4.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}