-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 KB
/
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
40
41
42
43
44
45
46
47
{
"name": "nextjs-spotify-now-playing",
"version": "1.0.0",
"description": "A Next.js starter template for displaying your currently playing Spotify track",
"main": "pages/index.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"generate-auth-url": "node scripts/generate-auth-url.js",
"get-refresh-token": "node scripts/callback.js"
},
"dependencies": {
"date-fns": "^3.6.0",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"swr": "^2.2.5"
},
"devDependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1"
},
"engines": {
"node": ">=18"
},
"author": "Eeshaan Pirani",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eeshaan/nextjs-spotify-now-playing.git"
},
"keywords": [
"nextjs",
"spotify",
"api",
"react",
"music",
"now-playing"
],
"bugs": {
"url": "https://github.com/eeshaan/nextjs-spotify-now-playing/issues"
},
"homepage": "https://github.com/eeshaan/nextjs-spotify-now-playing#readme"
}