2023-08-19 16:56:22 +01:00
|
|
|
{
|
|
|
|
"name": "card-drop",
|
2023-09-09 18:53:08 +01:00
|
|
|
"version": "0.1.2",
|
2023-08-19 16:56:22 +01:00
|
|
|
"main": "./dist/bot.js",
|
|
|
|
"typings": "./dist",
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rm -rf node_modules/ dist/",
|
|
|
|
"build": "tsc",
|
|
|
|
"start": "node ./dist/bot.js",
|
2023-09-03 20:52:55 +01:00
|
|
|
"test": "jest --passWithNoTests",
|
2023-08-19 16:56:22 +01:00
|
|
|
"db:up": "typeorm migration:run -d dist/database/dataSources/appDataSource.js",
|
|
|
|
"db:down": "typeorm migration:revert -d dist/database/dataSources/appDataSource.js",
|
2023-09-03 20:52:55 +01:00
|
|
|
"db:create": "typeorm migration:create ./src/database/migrations/app/new",
|
2023-08-19 16:56:22 +01:00
|
|
|
"release": "np --no-publish"
|
|
|
|
},
|
|
|
|
"repository": "https://gitea.vylpes.xyz/External/card-drop.git",
|
|
|
|
"author": "Ethan Lane <ethan@vylpes.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https//gitea.vylpes.xyz/External/card-drop/issues",
|
|
|
|
"email": "helpdesk@vylpes.com"
|
|
|
|
},
|
|
|
|
"homepage": "https://gitea.vylpes.xyz/External/card-drop",
|
|
|
|
"funding": "https://ko-fi.com/vylpes",
|
|
|
|
"dependencies": {
|
|
|
|
"@discordjs/rest": "^1.1.0",
|
|
|
|
"@types/jest": "^29.0.0",
|
|
|
|
"@types/uuid": "^9.0.0",
|
|
|
|
"discord.js": "^14.3.0",
|
|
|
|
"dotenv": "^16.0.0",
|
2023-08-26 11:39:45 +01:00
|
|
|
"googleapis": "^126.0.0",
|
2023-08-19 16:56:22 +01:00
|
|
|
"jest": "^29.0.0",
|
|
|
|
"jest-mock-extended": "^3.0.0",
|
|
|
|
"minimatch": "9.0.2",
|
|
|
|
"mysql": "^2.18.1",
|
2023-09-03 17:26:45 +01:00
|
|
|
"sqlite3": "^5.1.6",
|
2023-08-19 16:56:22 +01:00
|
|
|
"ts-jest": "^29.0.0",
|
|
|
|
"typeorm": "0.3.17"
|
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"**/semver": "^7.5.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^20.0.0",
|
|
|
|
"np": "^8.0.4",
|
|
|
|
"typescript": "^5.0.0"
|
|
|
|
}
|
|
|
|
}
|