2021-09-14 09:55:42 -07:00
|
|
|
{
|
|
|
|
|
"dependencies": {
|
2022-10-29 14:56:04 +00:00
|
|
|
"@discordjs/opus": "^0.9.0",
|
2022-10-31 13:42:57 +07:00
|
|
|
"@discordjs/rest": "^1.3.0",
|
|
|
|
|
"@discordjs/voice": "^0.13.0",
|
2021-09-20 12:37:26 -07:00
|
|
|
"@types/color-thief-node": "^1.0.1",
|
2022-08-25 18:18:57 +07:00
|
|
|
"@types/cors": "^2.8.12",
|
2022-10-05 12:34:10 +07:00
|
|
|
"@types/express": "^4.17.14",
|
2022-02-07 10:41:55 +07:00
|
|
|
"@types/os-utils": "^0.0.1",
|
2022-01-27 17:58:14 +07:00
|
|
|
"bluebird": "^3.7.2",
|
2022-10-31 13:42:57 +07:00
|
|
|
"bufferutil": "^4.0.7",
|
2021-09-20 12:37:26 -07:00
|
|
|
"color-thief-node": "^1.0.4",
|
2022-08-25 18:18:57 +07:00
|
|
|
"cors": "^2.8.5",
|
2021-09-19 08:25:11 -07:00
|
|
|
"country-code-emoji": "^2.3.0",
|
2022-02-27 16:32:32 +07:00
|
|
|
"country-code-lookup": "^0.0.20",
|
2022-11-08 15:06:59 +00:00
|
|
|
"discord-api-types": "^0.37.17",
|
2022-10-31 13:16:55 +07:00
|
|
|
"discord.js": "^14.6.0",
|
2022-10-05 12:34:10 +07:00
|
|
|
"dotenv": "^16.0.3",
|
2022-10-31 13:42:57 +07:00
|
|
|
"express": "^4.18.2",
|
2022-10-05 12:34:10 +07:00
|
|
|
"i18n": "^0.15.1",
|
2022-05-01 17:56:01 +07:00
|
|
|
"libsodium-wrappers": "^0.7.10",
|
2021-09-19 04:03:13 -07:00
|
|
|
"node-osu": "^2.2.1",
|
2022-02-07 10:41:55 +07:00
|
|
|
"os-utils": "^0.0.14",
|
2022-05-01 17:56:01 +07:00
|
|
|
"ping": "^0.4.2",
|
2022-10-31 13:42:57 +07:00
|
|
|
"play-dl": "^1.9.6",
|
2022-11-08 14:36:04 +00:00
|
|
|
"ts-custom-error": "^3.3.1",
|
2022-10-05 12:34:10 +07:00
|
|
|
"typescript": "^4.8.4",
|
2022-10-29 14:56:13 +00:00
|
|
|
"utf-8-validate": "^5.0.10",
|
2022-01-25 13:35:40 +07:00
|
|
|
"validator": "^13.7.0",
|
2022-10-31 13:42:57 +07:00
|
|
|
"winston": "^3.8.2",
|
2022-01-30 20:08:21 +07:00
|
|
|
"zlib-sync": "^0.1.7"
|
2021-09-14 09:55:42 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-10-31 13:42:57 +07:00
|
|
|
"@prisma/client": "^4.5.0",
|
2022-10-05 12:34:10 +07:00
|
|
|
"@types/bluebird": "^3.5.37",
|
2022-10-31 13:42:57 +07:00
|
|
|
"@types/i18n": "^0.13.5",
|
2022-11-07 05:20:06 +00:00
|
|
|
"@types/node": "^18.11.9",
|
2022-01-25 19:51:51 +07:00
|
|
|
"@types/ping": "^0.4.1",
|
2022-10-31 13:42:57 +07:00
|
|
|
"@types/validator": "^13.7.10",
|
2022-03-05 21:58:02 +07:00
|
|
|
"copyfiles": "^2.4.1",
|
2022-10-31 13:42:57 +07:00
|
|
|
"prisma": "^4.5.0",
|
2022-06-06 13:00:38 +07:00
|
|
|
"ts-node-dev": "^2.0.0"
|
2021-09-14 09:55:42 -07:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"tsc": "tsc",
|
|
|
|
|
"development": "ts-node-dev ./src/index.ts --respawn --transpileOnly",
|
2022-03-06 21:48:14 +07:00
|
|
|
"build": "tsc -b && copyfiles -u 1 configs_example/**/*.* dist/configs_example/",
|
2022-10-30 22:21:46 +07:00
|
|
|
"docker-build": "docker build . -t ghcr.io/kirameki-cafe/yumi:latest",
|
|
|
|
|
"docker-run": "docker run -d --name yumi --mount type=bind,source=\"$(pwd)\"/configs,target=/home/node/app/configs --network host --env-file .env ghcr.io/kirameki-cafe/yumi:latest",
|
|
|
|
|
"docker-push": "docker push ghcr.io/kirameki-cafe/yumi:latest",
|
2022-03-06 21:48:14 +07:00
|
|
|
"production": "tsc && node ./dist/index.js",
|
2021-09-14 09:55:42 -07:00
|
|
|
"test": "mocha -r ts-node/register tests/**/*.ts"
|
|
|
|
|
},
|
|
|
|
|
"name": "yumi",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"main": "index.js",
|
2022-10-30 22:21:46 +07:00
|
|
|
"repository": "https://github.com/kirameki-cafe/Yumi.git",
|
|
|
|
|
"author": "Kirameki Café <contact@kirameki.cafe>",
|
2022-05-01 18:07:48 +07:00
|
|
|
"license": "GPL-3.0"
|
2021-09-14 09:55:42 -07:00
|
|
|
}
|