forked from johnsylvain/loungefm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "radio",
"version": "1.0.0",
"description": "radio server",
"main": "dist/app.js",
"engines": {
"node": "20.11.1",
"npm": "8.1.2"
},
"scripts": {
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "ts-node-dev --respawn -- src/app.ts",
"start:prod": "npx tsc && node dist/app.js",
"prettier-format": "prettier --config .prettierrc.json 'src/**/*.ts' --write"
},
"dependencies": {
"16": "^0.0.2",
"-": "^0.0.1",
"@dropb/ffprobe": "^2.0.1",
"@google-cloud/local-auth": "2.1.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@superfluid-finance/sdk-core": "^0.6.9",
"@trpc/server": "^10.37.1",
"@typegoose/typegoose": "^11.4.1",
"@types/ffprobe-static": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "*",
"@types/throttle": "^1.0.1",
"@types/uuid": "^9.0.2",
"alchemy-sdk": "^2.9.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.7.1",
"express": "^4.18.2",
"express-pino-logger": "^7.0.0",
"express-rate-limit": "^6.9.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.2",
"googleapis": "105",
"graphql": "^16.8.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.1",
"lodash": "^4.17.21",
"mongo-sanitize": "^1.1.0",
"mongoose": "^7.4.0",
"morgan": "^1.10.0",
"mp3tag.js": "^3.4.2",
"multer": "^1.4.5-lts.1",
"music-metadata": "^8.1.4",
"node-cron": "^3.0.2",
"node-id3": "^0.2.6",
"nodemon": "^2.0.22",
"onchange": "^7.1.0",
"pino": "^8.11.0",
"socket.io": "^4.6.1",
"throttle": "^1.0.3",
"trpc-panel": "^1.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "*",
"uuid": "^9.0.0",
"ytdl-core": "4.10.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.197",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1"
}
}