-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.6 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
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
{
"name": "bitume-back",
"version": "2.12.1",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src -e js,ts,json --exec \"ts-node --transpile-only src/index.ts\"",
"build": "npm run clean && tsc && tsc-alias",
"start": "node dist/src/index.js",
"start:log": "node dist/src/index.js >> logs/app.log 2>&1",
"migrate": "sequelize-cli db:migrate",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
"format": "prettier --check 'src/**/*.{js,ts,jsx,tsx}'",
"format:fix": "prettier --write 'src/**/*.{js,ts,jsx,tsx}'",
"clean": "rm -rf dist",
"bump": "read -p 'Version (major, minor, patch): ' v && npm version $v -m 'release: v%s' && read -p 'Confirmer le push ? (y/n): ' confirm && [[ $confirm == \"y\" ]] && git push --follow-tags"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.18.0",
"@distube/ytdl": "^2.0.6",
"@distube/ytpl": "github:distubejs/ytpl",
"axios": "^1.9.0",
"body-parser": "^2.2.0",
"bufferutil": "^4.0.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"discord.js": "^14.25.1",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"glob": "^13.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"lint": "^1.1.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"mysql2": "^3.14.1",
"node-cron": "^4.2.0",
"npm": "^11.4.2",
"organ": "^0.0.0",
"pg": "^8.15.5",
"play-dl": "^1.9.7",
"prettier": "^3.5.3",
"prism-media": "^1.3.5",
"sequelize": "^6.37.7",
"sequelize-cli": "^6.6.2",
"socket.io": "^4.8.1",
"tsc-alias": "^1.8.16",
"umzug": "^3.8.2",
"winston": "^3.17.0",
"winston-loki": "^6.1.3",
"youtubei.js": "^14.0.0",
"yt-search": "^2.13.1",
"ytdl-core": "npm:@distube/ytdl-core@^4.16.12",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.9",
"@types/node": "^22.14.1",
"@types/pg": "^8.11.14",
"@types/socket.io": "^3.0.1",
"@types/yt-search": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint-plugin-prettier": "^5.5.4",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}