-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.33 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
{
"name": "spotify-currently-playing-track",
"private": "true",
"version": "1.0.0",
"description": "Dynamically generate Spotify currently playing tracks for your github readme",
"main": "index.js",
"scripts": {
"get-authorize-url": "ts-node scripts/getAuthorizeURL.ts",
"get-refresh-token": "ts-node scripts/getRefreshToken.ts",
"start": "ts-node ./api/index.ts",
"lint": "eslint . --fix --ignore-path .gitignore",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/regchiu/spotify-currently-playing-track.git"
},
"keywords": [],
"author": "regchiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/regchiu/spotify-currently-playing-track/issues"
},
"homepage": "https://github.com/regchiu/spotify-currently-playing-track#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.5.0",
"@types/spotify-web-api-node": "^5.0.11",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"express": "^4.21.1",
"prettier": "^2.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"spotify-web-api-node": "^5.0.2"
}
}