DiscordTickets/package.json

98 lines
2.4 KiB
JSON
Raw Normal View History

2022-03-18 18:27:32 +02:00
{
"name": "discord-tickets",
2024-05-01 04:45:52 +03:00
"version": "4.0.18",
2022-03-18 18:27:32 +02:00
"private": "true",
2023-06-17 00:50:47 +03:00
"description": "The most popular open-source ticket management bot for Discord.",
2022-05-05 23:29:28 +03:00
"main": "src/",
2022-03-18 18:27:32 +02:00
"scripts": {
2023-02-13 18:42:35 +02:00
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
2022-03-18 18:27:32 +02:00
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
2022-05-05 23:29:28 +03:00
"keygen": "node scripts/keygen",
2023-02-13 16:36:15 +02:00
"lint": "eslint src scripts --fix",
2022-07-23 15:27:32 +03:00
"preinstall": "node scripts/preinstall",
"postinstall": "node scripts/postinstall",
2022-08-26 01:29:07 +03:00
"start": "node .",
2022-07-21 03:25:37 +03:00
"studio": "npx prisma studio",
2024-04-18 02:33:17 +03:00
"test": "node scripts/check-i18n",
2024-04-25 03:13:17 +03:00
"__prepare": "husky install"
2022-03-18 18:27:32 +02:00
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
2023-02-13 17:07:35 +02:00
"lint-staged": {
2023-02-13 18:41:56 +02:00
"**/*.js": [
"npm run lint --"
]
2023-02-13 17:07:35 +02:00
},
2022-03-18 18:27:32 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/discord-tickets/bot.git"
},
"keywords": [
"discord",
"tickets",
"bot"
],
"author": "eartharoid",
"license": "GPL-3.0-or-later",
2022-03-18 18:27:32 +02:00
"bugs": {
"url": "https://github.com/discord-tickets/bot/issues"
},
"homepage": "https://discordtickets.app",
"engines": {
2023-03-07 00:09:05 +02:00
"node": ">=18"
2022-03-18 18:27:32 +02:00
},
"dependencies": {
"@discord-tickets/settings": "^2.2.3",
2024-01-15 04:14:38 +02:00
"@eartharoid/dbf": "^0.4.2",
2022-03-18 18:27:32 +02:00
"@eartharoid/dtf": "^2.0.1",
2022-10-26 20:58:46 +03:00
"@eartharoid/i18n": "^1.2.1",
"@fastify/cookie": "^9.3.1",
"@fastify/jwt": "^8.0.0",
"@fastify/oauth2": "^7.8.0",
2024-01-15 04:14:38 +02:00
"@prisma/client": "^4.16.2",
"boxen": "^7.1.1",
"cryptr": "^6.3.0",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
2024-01-15 04:14:38 +02:00
"figlet": "^1.7.0",
"fs-extra": "^10.1.0",
2024-01-15 04:14:38 +02:00
"keyv": "^4.5.4",
2023-02-24 18:32:52 +02:00
"leeks.js": "^0.3.0",
2024-01-15 04:14:38 +02:00
"leekslazylogger": "^6.0.0",
2022-07-16 01:19:42 +03:00
"ms": "^2.1.3",
2022-10-24 22:17:40 +03:00
"mustache": "^4.2.0",
2022-05-06 02:01:19 +03:00
"node-dir": "^0.1.17",
2022-07-18 23:53:17 +03:00
"node-emoji": "^1.11.0",
2022-07-17 16:13:44 +03:00
"object-diffy": "^1.0.4",
2024-01-15 04:14:38 +02:00
"prisma": "^4.16.2",
"semver": "^7.6.0",
2023-06-25 15:41:07 +03:00
"short-unique-id": "^4.4.4",
"spacetime": "^7.6.0",
2022-05-05 23:29:28 +03:00
"terminal-link": "^2.1.1",
2024-04-25 03:05:47 +03:00
"yaml": "^2.4.1"
2022-03-18 18:27:32 +02:00
},
"devDependencies": {
2024-01-15 04:14:38 +02:00
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"all-contributors-cli": "^6.26.1",
2023-02-13 18:42:35 +02:00
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.57.0",
2022-03-22 01:28:20 +02:00
"eslint-plugin-unused-imports": "^2.0.0",
2024-04-25 03:05:47 +03:00
"husky": "^8.0.3",
2024-01-15 04:14:38 +02:00
"lint-staged": "^13.3.0",
2023-09-07 04:12:11 +03:00
"markdown-table": "^3.0.3",
2023-05-27 00:28:12 +03:00
"nodemon": "^2.0.22"
2022-10-09 19:04:43 +03:00
},
"optionalDependencies": {
2024-01-15 04:14:38 +02:00
"bufferutil": "^4.0.8",
2022-10-09 19:04:43 +03:00
"erlpack": "github:discord/erlpack",
2022-10-18 16:58:30 +03:00
"utf-8-validate": "^5.0.10",
2024-01-15 04:14:38 +02:00
"zlib-sync": "^0.1.9"
2022-03-18 18:27:32 +02:00
}
2023-02-13 17:07:35 +02:00
}