-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
{
"name": "marli-music",
"version": "1.0.0",
"description": "Marli Marlete discord bot music",
"main": "index.js",
"author": "badaueba",
"license": "MIT",
"scripts": {
"start": "tsx src/index.ts",
"start:watch": "tsx watch src/index.ts",
"build": "yarn tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist/src",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --config .prettierrc './**/*.ts' --write",
"lint:format": "concurrently \"yarn run format\" \"yarn run lint:fix\"",
"test": "vitest",
"coverage": "vitest --coverage",
"coverage:web": "http-server -o -p 3333 ./coverage",
"coverage:all": "concurrently \"yarn run coverage\" \"yarn run coverage:web\" "
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@sentry/node": "^7.49.0",
"@upstash/redis": "^1.20.3",
"dayjs": "^1.11.7",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.2",
"http": "^0.0.1-security",
"play-dl": "^1.9.6",
"winston": "^3.8.2",
"yt-search": "^2.10.4",
"ytdl-core": "^4.11.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/ffmpeg": "^1.0.4",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/node": "^18.15.12",
"@types/winston": "^2.4.4",
"@types/yt-search": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitest/coverage-istanbul": "^0.30.1",
"c8": "^7.13.0",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"ffmpeg-static": "^5.1.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"libsodium-wrappers": "^0.7.11",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tscpaths": "^0.0.9",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn run lint:format"
}
}