Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
argonbot/package.json

114 lines
3.1 KiB
JSON

{
"name": "argon-bot",
"version": "0.0.1-alpha.0",
"description": "A free and open source Discord Bot under GPL-3.0-or-later",
"main": "dist/index.js",
"repository": "https://code.relms.dev/Relms/ArgonBot",
"bugs": "https://code.relms.dev/Relms/ArgonBot/issues",
"homepage": "https://code.relms.dev/Relms/ArgonBot/src/branch/master/README.md",
"author": "Daryl Ronningen <relms@relms.dev>",
"maintainers": [
"Daryl Ronningen <relms@relms.dev>"
],
"contributors": [],
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"clean": "rimraf dist",
"compile": "tsc",
"commit": "cz",
"lint": "eslint --format=pretty src/**/*.ts",
"lint:save": "eslint --format=pretty --save src/**/*.ts",
"migrate": "node-pg-migrate",
"postinstall": "husky install",
"release:alpha": "standard-version --prelease alpha -s",
"release:beta": "standard-version --prelease beta -s",
"release:full": "standard-version -s",
"run:dev": "NODE_CONFIG_ENV=dev node dist/index.js",
"run:prod": "NODE_CONFIG_ENV=production node dist/index.js",
"watch:bot": "NODE_CONFIG_ENV=dev nodemon dist/index.js",
"watch:tsc": "tsc --watch"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@neonjs/framework": "^1.1.1",
"bufferutil": "^4.0.5",
"config": "^3.3.6",
"discord-api-types": "^0.24.0",
"figlet": "^1.5.2",
"gradient-string": "^1.2.0",
"i18next": "^21.4.0",
"i18next-fs-backend": "^1.1.1",
"jsonschema": "^1.4.0",
"luxon": "^2.0.2",
"node-pg-migrate": "^6.0.0",
"pg": "^8.7.1",
"sql-template-strings": "^2.2.2",
"terminal-link": "^3.0.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"utf-8-validate": "^5.0.7",
"vm2": "^3.9.5",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/cz-commitlint": "^14.1.0",
"@types/config": "^0.0.40",
"@types/figlet": "^1.5.4",
"@types/gradient-string": "^1.1.2",
"@types/i18next-fs-backend": "^1.1.2",
"@types/inquirer": "^8.1.3",
"@types/luxon": "^2.0.5",
"@types/pg": "^8.6.1",
"@types/rimraf": "^3.0.2",
"@types/source-map-support": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@typescript-eslint/typescript-estree": "^5.3.0",
"commitizen": "^4.2.4",
"eslint": "^8.1.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-unicorn": "^38.0.0",
"husky": "^7.0.4",
"i18next-chained-backend": "^3.0.2",
"inquirer": "^8.2.0",
"lint-staged": "^11.2.6",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.20",
"standard-version": "^9.3.2",
"ts-sql-plugin": "^0.10.0",
"typescript-eslint-language-service": "^4.1.5"
},
"lint-staged": {
"src/**/*": [
"yarn lint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
}
]
},
"packageManager": "yarn@3.1.0"
}