-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "gt-radio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon src/server/index.ts -w src/server",
"build": "next build ./src/client/",
"start": "NODE_ENV=production ts-node ./src/server/index.ts",
"test-start": "ts-node ./src/server/index.ts",
"trace-dev": "NODE_OPTIONS='--trace-warnings --stack-trace-limit=50' nodemon src/server/index.ts -w src/server",
"heap-prof": "node --stack-trace-limit=50 --heap-prof --trace-warnings -r ts-node/register ./src/server/index.ts",
"download-audio": "NODE_ENV=production npx ts-node ./scripts/downloadSongs.ts",
"revalidate": "NODE_ENV=production npx ts-node ./scripts/revalidateTags.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.682.0",
"@aws-sdk/lib-storage": "^3.679.0",
"@mui/material": "^5.13.4",
"@types/node": "18.15.11",
"@types/react": "18.0.31",
"@types/react-dom": "18.0.11",
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"hls.js": "^1.5.17",
"jsonwebtoken": "^9.0.0",
"m3u8-parser": "^6.0.0",
"mongodb": "^5.1.0",
"next": "^15.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-paginate": "^8.2.0",
"react-spinners": "^0.13.8",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"ts-node": "^10.9.1",
"typescript": "5.0.2",
"uuid": "^9.0.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@distube/ytdl-core": "^4.15.1",
"@flydotio/dockerfile": "^0.5.7",
"@types/apicache": "^1.6.1",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^9.0.1",
"nodemon": "^3.1.7"
}
}