-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "alradio-server",
"version": "0.1.0",
"description": "AL Radio, the community driven, AL powered broadcast!",
"private": true,
"type": "module",
"scripts": {
"start:local": "node --expose-gc --env-file=.env src/index.js",
"start": "node --expose-gc --optimize_for_size --max_old_space_size=460 src/index.js",
"mongo": "shx mkdir -p db && mongod --dbpath db --port 28017",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,css,md}\""
},
"dependencies": {
"async_hooks": "^1.0.0",
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"email-validator": "^2.0.4",
"express": "^4.19.2",
"ffprobe": "^1.1.2",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"https-proxy-agent": "^7.0.5",
"jsonwebtoken": "^9.0.2",
"leo-profanity": "^1.7.0",
"log4js": "^6.9.1",
"mongodb": "^6.8.0",
"mongoose": "^8.5.4",
"nanoid": "^5.0.7",
"node-mailjet": "^6.0.6",
"openai": "^4.55.5",
"styled-components": "^6.1.12",
"throttle": "^1.0.3",
"warn": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"shx": "^0.3.4"
}
}