-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
48
49
{
"name": "soundle-server",
"version": "1.0.0",
"description": "Server side of the Soundle web application developed for the ECV course at UPF, 2025.",
"type": "module",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"pm2-start": "pm2 start server.js --name soundle-server",
"pm2-stop": "pm2 stop soundle-server",
"pm2-restart": "pm2 restart soundle-server",
"pm2-delete": "pm2 delete soundle-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ECV2025-Soundle/Soundle-Server.git"
},
"keywords": [
"node",
"express",
"web",
"soundle",
"ECV",
"spotify"
],
"author": "ECV2025-Soundle",
"license": "ISC",
"bugs": {
"url": "https://github.com/ECV2025-Soundle/Soundle-Server/issues"
},
"homepage": "https://github.com/ECV2025-Soundle/Soundle-Server#readme",
"dependencies": {
"commander": "13.1.0",
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-ws": "^5.0.2",
"jsonwebtoken": "9.0.2",
"mysql2": "3.12.0",
"soundle-server": "file:",
"uuid": "11.1.0",
"winston": "3.17.0",
"winston-daily-rotate-file": "5.0.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}