This repository was archived by the owner on Mar 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 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
62
63
64
65
66
67
{
"name": "memo-exe",
"version": "0.2.0",
"main": "./dist/src/index.js",
"author": "jate-koh <jate_ben@hotmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jate-koh/memoexe.git"
},
"bugs": {
"type": "git",
"url": "https://github.com/jate-koh/memoexe/issues"
},
"license": "MIT",
"scripts": {
"build-dev": "webpack --mode development --watch",
"start-dev": "nodemon ./dist/bundle.js --watch ./dist/bundle.js",
"dev": "npm-run-all --parallel build-dev start-dev",
"clean": "rimraf dist/",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build-prod": "webpack --mode production",
"start-prod": "node ./dist/bundle.js",
"prod": "yarn run start-prod"
},
"dependencies": {
"@discordjs/builders": "^1.3.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^1.3.0",
"@discordjs/voice": "^0.14.0",
"discord-api-types": "^0.37.19",
"discord-player": "^5.4.0",
"discord.js": "^14.5.0",
"dotenv": "^16.0.2",
"ffmpeg-static": "^5.1.0",
"glob": "^8.0.3",
"path": "^0.12.7",
"rimraf": "^4.1.2",
"soundcloud-scraper": "^5.0.3",
"spotify-url-info": "^3.2.3",
"youtube-sr": "^4.3.4",
"ytdl-core": "^4.11.2"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.20",
"nodemon-webpack-plugin": "^4.8.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.9.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"yarn-run-all": "^3.1.1"
}
}