DiscordTickets/package.json

74 lines
1.7 KiB
JSON
Raw Normal View History

2019-05-04 00:09:48 +03:00
{
2021-02-26 18:07:20 +02:00
"name": "@eartharoid/discord-tickets",
"version": "3.1.0",
2020-08-17 16:46:23 +03:00
"private": true,
2021-02-20 19:09:08 +02:00
"description": "An open-source Discord bot for ticket management",
"main": "src/index.js",
"scripts": {
2021-05-25 22:51:21 +03:00
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
2021-05-22 15:27:12 +03:00
"lint": "eslint src --fix",
"start": "node src/",
"test": "echo \"Nothing to test! Run with 'npm start'\" && exit 1"
},
2020-08-17 16:46:23 +03:00
"engines": {
"node": ">=16.6"
2020-08-17 16:46:23 +03:00
},
"repository": {
"type": "git",
2021-03-03 12:57:28 +02:00
"url": "git+https://github.com/discord-tickets/bot.git"
},
"keywords": [
"discord",
2021-02-15 20:34:59 +02:00
"tickets",
"bot"
],
"author": "eartharoid",
"license": "GPL-3.0",
"bugs": {
2021-03-03 12:57:28 +02:00
"url": "https://github.com/discord-tickets/bot/issues"
},
2021-02-26 18:07:20 +02:00
"homepage": "https://discordtickets.app",
2021-03-03 12:57:28 +02:00
"funding": "https://github.com/discord-tickets/bot/?sponsor=1",
"dependencies": {
2021-04-27 13:34:34 +03:00
"@eartharoid/i18n": "^1.0.0",
"boxen": "^5.0.1",
"command-line-args": "^5.2.0",
2021-04-07 02:02:07 +03:00
"cryptr": "^6.0.2",
"discord.js": "^13.1.0",
"dotenv": "^8.6.0",
2021-05-17 22:24:00 +03:00
"jsonschema": "^1.4.0",
2021-05-17 02:04:14 +03:00
"keyv": "^4.0.3",
"leeks.js": "^0.2.2",
"leekslazylogger-fastify": "^0.1.1",
"mustache": "^4.2.0",
"node-emoji": "^1.11.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.5",
"sequelize": "^6.6.5",
2021-05-11 01:10:39 +03:00
"string-argv": "^0.3.1",
"terminal-link": "^2.1.1",
"to-time-monthsfork": "^1.1.4"
},
2021-02-16 16:48:04 +02:00
"devDependencies": {
2021-05-25 22:51:21 +03:00
"all-contributors-cli": "^6.20.0",
"eslint": "^7.32.0",
"mariadb": "^2.5.4",
"mysql2": "^2.3.0",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"tedious": "^11.4.0"
2021-02-16 16:48:04 +02:00
},
"optionalDependencies": {
2021-02-16 16:48:04 +02:00
"sqlite3": "^5.0.2"
},
"peerDependencies": {
2021-02-16 16:48:04 +02:00
"mariadb": "^2.5.2",
"mysql2": "^2.2.5",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"tedious": "^11.0.3"
}
2019-05-04 00:09:48 +03:00
}