-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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": "spotify-info",
"version": "1.0.0",
"description": "A set of script that allows me to display what I'm currently playing on Spotify",
"main": "app.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/app.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dallegos/spotify-info.git"
},
"keywords": [
"javascript",
"spotify",
"typescript",
"experimental",
"spotify-api",
"expressjs",
"now-playing"
],
"author": "David Gallegos (https://github.com/dallegos)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/dallegos/spotify-info/issues"
},
"homepage": "https://github.com/dallegos/spotify-info#readme",
"dependencies": {
"dotenv": "^16.3.1",
"etag": "^1.8.1",
"express": "^4.18.2",
"node-fetch": "2.6.6"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.4.0",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.6"
}
}