-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 752 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 752 Bytes
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
{
"name": "spotify-emotion-engine",
"version": "1.0.0",
"description": "Backend para análise emocional de música do Spotify",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"express-rate-limit": "^7.1.5",
"@supabase/supabase-js": "^2.39.0",
"axios": "^1.6.2",
"jsonwebtoken": "^9.0.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"ioredis": "^5.3.2",
"node-cache": "^5.1.2",
"compression": "^1.7.4",
"express-validator": "^7.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
}
}