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

215 lines
5.4 KiB
JSON
Raw Normal View History

2021-06-14 09:59:17 +00:00
{
2021-06-17 08:25:51 +00:00
"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:dev": "tsc",
"compile:prod": "rollup -c --compact",
2021-06-17 08:25:51 +00:00
"commit": "commit",
2021-06-18 10:29:38 +00:00
"coverage": "NODE_CONFIG_ENV=tests nyc yarn run test",
2021-06-17 08:25:51 +00:00
"lint": "eslint --format=pretty src/**/*.ts",
"lint:save": "eslint --format=pretty --save src/**/*.ts",
2021-07-01 16:40:17 +00:00
"migrate": "node-pg-migrate",
2021-06-17 08:25:51 +00:00
"postinstall": "husky install",
"release:alpha": "standard-version --prelease alpha -s",
"release:beta": "standard-version --prelease beta -s",
"release:full": "standard-version -s",
2021-06-18 10:29:38 +00:00
"run:dev": "NODE_CONFIG_ENV=dev node dist/src/index.js",
"run:prod": "NODE_CONFIG_ENV=production node dist/index.js",
"test": "NODE_CONFIG_ENV=tests mocha -r ts-node/register -r tsconfig-paths/register tests/**/*.test.ts",
"watch:bot": "NODE_CONFIG_ENV=dev nodemon dist/src/index.js",
2021-06-18 10:29:38 +00:00
"watch:rollup": "rollup -c --compact --watch",
2021-06-17 08:25:51 +00:00
"watch:tsc": "tsc --watch"
},
"dependencies": {
"@discordjs/opus": "^0.5.3",
2021-06-29 14:53:49 +00:00
"@discordjs/voice": "^0.5.1",
2021-06-17 08:25:51 +00:00
"bufferutil": "^4.0.3",
"chalk": "^4.1.1",
"config": "^3.3.6",
"discord.js": "dev",
2021-06-17 08:25:51 +00:00
"erlpack": "^0.1.3",
2021-06-29 14:53:49 +00:00
"ffmpeg-static": "^4.4.0",
2021-06-17 08:25:51 +00:00
"figlet": "^1.5.0",
"gradient-string": "^1.2.0",
2021-06-29 15:54:17 +00:00
"i18next": "^20.3.2",
"i18next-fluent": "^1.0.1",
"i18next-fs-backend": "^1.1.1",
2021-06-17 08:25:51 +00:00
"jsonschema": "^1.4.0",
"luxon": "^1.27.0",
"module-alias": "^2.2.2",
2021-06-17 08:25:51 +00:00
"node-gyp": "^8.1.0",
2021-07-01 16:40:17 +00:00
"node-pg-migrate": "^5.10.0",
2021-07-01 01:02:33 +00:00
"pg": "^8.6.0",
2021-06-17 08:25:51 +00:00
"sodium": "^3.0.2",
2021-07-01 01:02:33 +00:00
"sql-template-strings": "^2.2.2",
2021-06-17 08:25:51 +00:00
"terminal-link": "^3.0.0",
"tslib": "^2.3.0",
2021-07-02 19:49:20 +00:00
"typescript": "^4.3.5",
2021-06-17 08:25:51 +00:00
"utf-8-validate": "^5.0.5",
"vm2": "^3.9.3",
2021-06-17 08:25:51 +00:00
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/prompt-cli": "^12.1.4",
2021-06-17 11:46:58 +00:00
"@istanbuljs/nyc-config-typescript": "^1.0.1",
2021-06-17 08:25:51 +00:00
"@rollup/plugin-json": "^4.1.0",
2021-07-02 19:49:20 +00:00
"@rollup/plugin-strip": "^2.0.1",
2021-06-17 08:25:51 +00:00
"@rollup/plugin-typescript": "^8.2.1",
2021-06-29 14:53:49 +00:00
"@types/chai": "^4.2.19",
2021-06-18 10:29:38 +00:00
"@types/config": "^0.0.38",
2021-06-17 08:25:51 +00:00
"@types/eslint": "^7.2.13",
"@types/figlet": "^1.5.1",
2021-06-18 10:40:27 +00:00
"@types/gradient-string": "^1.1.1",
2021-06-29 15:54:17 +00:00
"@types/i18next-fs-backend": "^1.0.0",
2021-06-18 10:40:27 +00:00
"@types/luxon": "^1.27.0",
2021-06-17 11:46:58 +00:00
"@types/mocha": "^8.2.2",
2021-06-18 10:40:27 +00:00
"@types/module-alias": "^2.0.0",
2021-06-29 14:53:49 +00:00
"@types/node": "^15.12.5",
2021-07-01 01:02:33 +00:00
"@types/pg": "^8.6.0",
2021-06-18 10:40:27 +00:00
"@types/rimraf": "^3.0.0",
2021-07-02 19:49:20 +00:00
"@types/rollup-plugin-progress": "^1.1.0",
"@types/rollup-plugin-size-snapshot": "^0.10.0",
"@types/sinon": "^10.0.2",
2021-06-29 14:53:49 +00:00
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"@typescript-eslint/typescript-estree": "^4.28.1",
2021-06-17 11:46:58 +00:00
"chai": "^4.3.4",
2021-06-29 14:53:49 +00:00
"eslint": "^7.29.0",
2021-06-17 08:25:51 +00:00
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-header": "^3.1.1",
2021-06-17 08:25:51 +00:00
"husky": "^6.0.0",
2021-06-29 15:54:17 +00:00
"i18next-chained-backend": "^3.0.2",
2021-06-17 08:25:51 +00:00
"lint-staged": "^11.0.0",
2021-06-18 10:40:27 +00:00
"mocha": "^9.0.1",
2021-06-29 14:53:49 +00:00
"nodemon": "^2.0.8",
2021-06-17 08:25:51 +00:00
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
2021-06-29 14:53:49 +00:00
"rollup": "^2.52.3",
2021-07-02 19:49:20 +00:00
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-multi-input": "^1.3.1",
2021-07-02 19:49:20 +00:00
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-sizes": "^1.0.4",
2021-06-17 08:25:51 +00:00
"rollup-plugin-terser": "^7.0.2",
2021-07-02 19:49:20 +00:00
"rollup-plugin-visualizer": "^5.5.1",
"sinon": "^11.1.1",
2021-06-29 14:46:16 +00:00
"source-map-support": "^0.5.19",
2021-06-17 08:25:51 +00:00
"standard-version": "^9.3.0",
2021-06-17 11:46:58 +00:00
"ts-node": "^10.0.0",
2021-07-01 16:40:17 +00:00
"ts-sql-plugin": "^0.9.5",
2021-06-18 10:08:11 +00:00
"tsconfig-paths": "^3.9.0",
2021-06-17 08:25:51 +00:00
"typescript-eslint-language-service": "^4.1.4"
},
"eslintConfig": {
"root": true,
"env": {
"es2021": true,
"node": true,
"commonjs": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"header"
2021-06-17 08:25:51 +00:00
],
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1,
"CallExpression": {
"arguments": 1
}
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"eol-last": [
"error",
"always"
],
"object-curly-spacing": [
"error",
"always"
],
"default-case": "error",
"comma-dangle": [
"error",
"always-multiline"
],
"header/header": [
2,
"license-header.txt"
],
2021-06-17 08:25:51 +00:00
"no-case-declarations": "off",
"@typescript-eslint/no-non-null-assertion": "off"
},
"reportUnusedDisableDirectives": true
},
"lint-staged": {
"src/**/*": [
"yarn lint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
}
]
2021-06-18 10:08:11 +00:00
},
"_moduleAliases": {
"@": "dist",
"@src": "dist/src",
"@lib": "dist/src/lib",
"@utils": "dist/src/lib/utils/",
"@structures": "dist/src/lib/structures"
2021-06-17 08:25:51 +00:00
}
2021-06-14 09:59:17 +00:00
}