first commit
This commit is contained in:
commit
83d33d2847
18 changed files with 2718 additions and 0 deletions
32
package.json
Normal file
32
package.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"name": "spotify-ws",
|
||||
"version": "1.0",
|
||||
"description": "Get now-playing-song from Spotify with Websockets",
|
||||
"author": "albert|skidoodle@gh",
|
||||
"license": "AGPL-3.0",
|
||||
"repository": {
|
||||
"type": "GitHub",
|
||||
"url": "https://github.com/skidoodle/spotify-ws"
|
||||
},
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"dev": "nodemon --exec ts-node src/index.ts",
|
||||
"lint": "eslint --ext .ts src",
|
||||
"serve": "ts-node src/index.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^1.6.8",
|
||||
"dotenv": "^16.4.5",
|
||||
"socket.io": "^4.7.5",
|
||||
"zod": "^3.23.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/eslint": "^8.56.10",
|
||||
"@types/node": "^20.12.7",
|
||||
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
||||
"eslint": "^9.1.1",
|
||||
"nodemon": "^3.1.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue