spotify/server/package.json
2025-10-21 15:43:52 +02:00

34 lines
778 B
JSON

{
"name": "spotify-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"axios": "^1.7.2",
"better-sqlite3": "^9.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"sharp": "^0.34.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"tsx": "^4.19.0",
"typescript": "^5.6.3"
}
}