botserver/package.json

336 lines
9.4 KiB
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"name": "botserver",
"version": "3.1.0",
"type": "module",
"description": "General Bot Community Edition open-core server.",
"main": "./boot.mjs",
2018-11-12 13:53:21 -02:00
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
"homepage": "https://github.com/pragmatismo-io/BotServer/#readme",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
"João Ferreira <joao.parana@gmail.com>",
"Jorge Ramos <jramos@pobox.com>",
"PH <ph.an@outlook.com>",
2023-03-02 17:46:45 -03:00
"Dário Vieira <dario.junior3@gmail.com>",
"Alan Perdomo <alanperdomo@hotmail.com>"
],
2018-11-12 13:53:21 -02:00
"engines": {
2023-07-09 10:36:38 -03:00
"node": "=19.7.0"
2018-11-12 13:53:21 -02:00
},
2018-04-21 02:59:30 -03:00
"license": "AGPL-3.0",
"preferGlobal": true,
"private": false,
"bin": {
"gbot": "./boot.cjs"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/GeneralBots/BotServer.git"
},
2018-04-21 02:59:30 -03:00
"scripts": {
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
2022-12-14 08:23:39 -03:00
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose",
2022-06-08 13:24:43 -03:00
"build": "npm install && npm run build-server && npm run build-gbui",
"build-server": "tsc",
"build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build",
"build-docs": "typedoc --options typedoc.json src/",
2024-02-17 17:27:53 -03:00
"test": "vitest",
"start": "NODE_NO_WARNINGS=1 node ./boot.mjs --loader ts-node/esm --require ./suppress-node-warnings.cjs",
"debug": "NODE_NO_WARNINGS=1 node ./boot.mjs --loader ts-node/esm --require ./suppress-node-warnings.cjs --inspect",
"reverse-proxy": "node_modules/.bin/ngrok http 4242",
2018-11-11 18:00:37 -02:00
"watch:build": "tsc --watch",
"posttypedoc": "shx cp .nojekyll docs/reference/.nojekyll",
"ban": "ban",
"issues": "git-issues",
"license": "license-checker --production --onlyunknown --csv",
"pretty": "prettier-standard 'src/*.ts' 'packages/**/*.ts'",
2018-11-12 14:00:53 -02:00
"secure": "nsp check",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"unused-deps": "dependency-check --unused --no-dev ./package.json",
2018-11-12 13:53:21 -02:00
"travis-deploy-once": "travis-deploy-once --pro",
"semantic-release": "semantic-release",
2018-11-12 12:40:35 -02:00
"commit": "git-cz"
2018-04-21 02:59:30 -03:00
},
2024-02-17 17:27:53 -03:00
"jest": {
"workerIdleMemoryLimit": "4096MB",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
2018-04-21 02:59:30 -03:00
"dependencies": {
2022-12-16 10:54:34 -03:00
"@azure/arm-appservice": "13.0.3",
"@azure/arm-cognitiveservices": "7.3.1",
"@azure/arm-resources": "5.1.0",
"@azure/arm-search": "3.0.1",
"@azure/arm-sql": "9.0.1",
"@azure/arm-subscriptions": "5.1.0",
"@azure/cognitiveservices-computervision": "8.2.0",
"@azure/keyvault-keys": "4.6.0",
"@azure/ms-rest-js": "2.6.2",
2022-11-29 18:01:23 -03:00
"@azure/msal-node": "1.14.3",
2024-03-10 00:16:24 -03:00
"@azure/search-documents": "12.0.0",
2023-12-12 19:53:05 -03:00
"@azure/storage-blob": "12.17.0",
"@google-cloud/pubsub": "3.2.1",
"@google-cloud/translate": "7.0.4",
"@hubspot/api-client": "7.1.2",
"@koa/cors": "4.0.0",
2024-03-10 00:16:24 -03:00
"@langchain/community": "^0.0.36",
"@langchain/openai": "^0.0.15",
"@microsoft/microsoft-graph-client": "3.0.4",
"@nlpjs/basic": "4.26.1",
2022-11-29 18:01:23 -03:00
"@nosferatu500/textract": "3.1.2",
"@push-rpc/core": "1.8.2",
"@push-rpc/http": "1.8.2",
2024-01-16 23:32:04 -03:00
"@push-rpc/openapi": "^1.9.0",
"@push-rpc/websocket": "1.8.2",
2022-12-16 12:00:59 -03:00
"@semantic-release/changelog": "5.0.1",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@sendgrid/mail": "7.7.0",
2023-10-02 16:22:51 -03:00
"@sequelize/core": "7.0.0-alpha.29",
"@types/node": "18.11.9",
"@types/validator": "13.7.10",
"adm-zip": "0.5.9",
"alasql": "2.1.6",
"any-shell-escape": "0.1.1",
2023-02-24 13:31:40 -03:00
"arraybuffer-to-buffer": "0.0.7",
"async-mutex": "0.4.0",
"async-promises": "0.2.3",
"async-retry": "1.3.3",
2022-08-06 19:37:58 -03:00
"basic-auth": "2.0.1",
"billboard.js": "3.6.3",
"bluebird": "3.7.2",
"body-parser": "1.20.1",
"botbuilder": "4.18.0",
"botbuilder-adapter-facebook": "1.0.12",
"botbuilder-ai": "4.18.0",
"botbuilder-dialogs": "4.18.0",
"botframework-connector": "4.18.0",
"botlib": "3.0.11",
"c3-chart-maker": "0.2.8",
2024-03-11 13:30:11 -03:00
"cd": "^0.3.3",
"chalk-animation": "^2.0.3",
"chatgpt": "2.4.2",
"chrome-remote-interface": "0.31.3",
"cli-progress": "3.11.2",
"cli-spinner": "0.2.10",
"core-js": "3.26.1",
"data-forge": "1.9.6",
"date-diff": "1.0.2",
"docximager": "0.0.4",
"docxtemplater": "3.9.7",
"dotenv-extended": "2.9.0",
2023-02-24 16:50:03 -03:00
"dynamics-web-api": "1.7.6",
"exceljs": "4.3.0",
"express": "4.18.2",
"express-remove-route": "1.0.0",
"ffmpeg-static": "5.1.0",
"google-libphonenumber": "3.2.31",
"googleapis": "126.0.1",
2024-03-16 21:36:03 -03:00
"hnswlib-node": "^1.4.2",
2024-04-17 10:50:33 -03:00
"http-proxy": "^1.18.1",
"ibm-watson": "7.1.2",
2024-02-17 17:27:53 -03:00
"iso-639-1": "3.1.1",
2023-02-13 17:31:38 -03:00
"join-images-updated": "1.1.4",
2023-12-12 19:53:05 -03:00
"js-md5": "0.8.3",
2024-03-10 00:16:24 -03:00
"json-schema-to-zod": "^2.0.14",
"just-indent": "0.0.1",
"keyv": "4.5.2",
"koa": "2.13.4",
"koa-body": "6.0.1",
"koa-router": "12.0.0",
2024-03-10 00:16:24 -03:00
"langchain": "0.1.25",
2024-02-17 17:27:53 -03:00
"language-tags": "^1.0.9",
"line-replace": "2.0.1",
"lodash": "4.17.21",
2024-03-16 21:36:03 -03:00
"lunary": "^0.6.16",
"luxon": "3.1.0",
2024-03-10 00:16:24 -03:00
"mammoth": "1.7.0",
"mariadb": "3.2.2",
"mime-types": "2.1.35",
2022-11-19 23:34:58 -03:00
"moment": "1.3.0",
2022-12-14 08:23:39 -03:00
"ms-rest-azure": "3.0.0",
"nexmo": "2.9.1",
2023-09-02 21:04:46 -03:00
"ngrok": "5.0.0-beta.2",
"node-cron": "3.0.2",
2023-02-24 13:31:40 -03:00
"node-html-parser": "6.1.5",
"node-nlp": "4.26.1",
"node-tesseract-ocr": "2.2.1",
"npm": "9.6.1",
"open": "8.4.0",
2023-02-24 13:31:40 -03:00
"open-docxtemplater-image-module": "1.0.3",
"openai": "4.6.0",
"pdf-extraction": "1.0.2",
"pdf-parse": "1.1.1",
2024-03-21 23:41:33 -03:00
"pdf-to-png-converter": "3.2.0",
2024-03-20 00:42:44 -03:00
"pdfjs-dist": "4.0.379",
"pdfkit": "0.13.0",
"phone": "3.1.30",
"pizzip": "3.1.3",
"pptxtemplater": "1.0.5",
"pragmatismo-io-framework": "1.1.1",
"prism-media": "1.3.4",
"public-ip": "6.0.1",
"punycode": "2.1.1",
"puppeteer": "19.8.0",
"puppeteer-extra": "3.3.4",
2023-03-19 20:09:54 -03:00
"puppeteer-extra-plugin-minmax": "1.1.2",
"puppeteer-extra-plugin-stealth": "2.11.1",
"qr-scanner": "1.4.2",
"qrcode": "1.5.1",
"qrcode-terminal": "0.12.0",
2020-04-28 20:54:04 -03:00
"readline": "1.3.0",
"reflect-metadata": "0.1.13",
2020-07-12 10:13:54 -03:00
"rimraf": "3.0.2",
"safe-buffer": "5.2.1",
"scanf": "1.1.2",
"sequelize": "6.28.2",
"sequelize-cli": "6.6.0",
"sequelize-typescript": "2.1.5",
2023-02-24 13:31:40 -03:00
"sharp": "0.31.3",
"simple-git": "3.16.0",
"speakingurl": "14.0.1",
"ssr-for-bots": "1.0.1-c",
"strict-password-generator": "1.1.2",
2022-12-16 10:54:34 -03:00
"swagger-client": "3.18.5",
2024-01-16 23:32:04 -03:00
"swagger-ui-dist": "^5.11.0",
"tabulator-tables": "5.4.2",
"tedious": "15.1.2",
2022-12-16 10:54:34 -03:00
"textract": "2.5.0",
"twilio": "^4.23.0",
"twitter-api-v2": "1.12.9",
"typescript": "4.9.5",
"url-join": "5.0.0",
"vhost": "3.0.2",
"vm2": "3.9.11",
"vm2-process": "2.1.1",
"walk-promise": "0.2.0",
"washyourmouthoutwithsoap": "1.0.2",
"whatsapp-cloud-api": "^0.3.1",
"whatsapp-web.js": "https://github.com/Julzk/whatsapp-web.js/tarball/jkr_hotfix_7",
"winston": "3.8.2",
2024-03-10 00:16:24 -03:00
"ws": "8.14.2",
2024-03-04 20:05:56 -03:00
"yarn": "1.22.19",
"zod-to-json-schema": "^3.22.4"
2018-11-11 10:50:58 -02:00
},
"devDependencies": {
"@types/qrcode": "1.5.0",
"@types/url-join": "4.0.1",
2022-11-19 23:34:58 -03:00
"ban-sensitive-files": "1.9.18",
2022-12-16 12:00:59 -03:00
"commitizen": "4.2.2",
"cz-conventional-changelog": "3.3.0",
"dependency-check": "4.1.0",
2022-12-16 10:54:34 -03:00
"git-issues": "1.0.0",
"license-checker": "25.0.1",
2022-12-16 10:54:34 -03:00
"prettier-standard": "15.0.1",
2022-12-16 12:00:59 -03:00
"semantic-release": "17.2.4",
2022-12-29 14:47:19 -03:00
"simple-commit-message": "4.0.13",
2023-02-24 13:31:40 -03:00
"super-strong-password-generator": "2.0.2",
"super-strong-password-generator-es": "2.0.2",
2022-12-16 12:00:59 -03:00
"travis-deploy-once": "5.0.11",
2024-02-17 17:27:53 -03:00
"tslint": "6.1.3",
"vitest": "^1.3.0"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"mocha": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": "off",
"linebreak-style": [
"warn",
"unix"
],
"no-unused-vars": [
"warn"
],
"no-undef": [
"warn"
],
"no-console": [
"warn"
],
"no-case-declarations": [
"warn"
],
"no-extra-semi": [
"warn"
],
"no-unreachable": [
"warn"
],
"no-redeclare": [
"warn"
],
"no-useless-escape": [
"warn"
],
"no-constant-condition": [
"warn"
]
}
},
"release": {
2018-11-17 09:33:39 -02:00
"tagFormat": "${version}",
2018-11-12 17:02:11 -02:00
"debug": true,
chore(release): 2.1.1 [skip ci] ## [2.1.1](https://github.com/GeneralBots/BotServer/compare/2.1.0...2.1.1) (2023-01-01) ### Bug Fixes * **admin.gbapp:** Fixing token generation issues. ([8fb35c2](https://github.com/GeneralBots/BotServer/commit/8fb35c2c2d4798b819e38bdf7c12ec5fe59d7f64)) * **admin.gbapp:** Fixing token generation issues. ([2a848f4](https://github.com/GeneralBots/BotServer/commit/2a848f4ea6b7fb3359bd0f9db9a9bdf167544cab)) * **admin.gbapp:** Fixing token generation issues. ([3de3bd6](https://github.com/GeneralBots/BotServer/commit/3de3bd6c01aaa80e38b57cdef63f80bf67fb785d)) * **all:** Finishing renaming to main branch. ([16d2101](https://github.com/GeneralBots/BotServer/commit/16d21019a081151db21e4726cb5c2eac3326336d)) * **all:** Finishing renaming to main branch. ([cac92cc](https://github.com/GeneralBots/BotServer/commit/cac92cca22a03b67326993f42e528900fa55a263)) * **all:** Finishing renaming to main branch. ([bff8bcf](https://github.com/GeneralBots/BotServer/commit/bff8bcf7e5fef6499f180d1a1bc9e57f131d6299)) * **all:** Finishing renaming to main branch. ([07f173e](https://github.com/GeneralBots/BotServer/commit/07f173ec7302a77945abc0bcd772af5ccd6c0761)) * **all:** Fixing bugs of 3.0 ([39eff93](https://github.com/GeneralBots/BotServer/commit/39eff935283883dcbdfcb5a38c599bd3d7153cd5)) * **all:** TODO items removed or moved to ALM. ([7348c54](https://github.com/GeneralBots/BotServer/commit/7348c5489433eb82a44af12b4a8f4e76f01998b4)) * **basic.gblib:** Renaming branch to main. ([c6d9662](https://github.com/GeneralBots/BotServer/commit/c6d96621455039a822f19746a1d8664c79e7ca28)) * **basic.gblib:** Renaming branch to main. ([203416c](https://github.com/GeneralBots/BotServer/commit/203416c47737c1a4cfb5e5110b4878a6534ecdcf)) * **basic.gblib:** TODO removal. ([2b08965](https://github.com/GeneralBots/BotServer/commit/2b0896521e537e22858d9d43b019bc95079af6b5)) * **basic.gblib:** TODO removal. ([c0133a8](https://github.com/GeneralBots/BotServer/commit/c0133a89606336824b93e453b60fce2630815c67)) * **basic.gblib:** TODO removal. ([9ad1d56](https://github.com/GeneralBots/BotServer/commit/9ad1d5693e954e88675c7e0605b6f64f2900f9d7))
2023-01-01 20:18:03 +00:00
"branches": [
"main"
],
2018-11-18 16:26:11 -02:00
"verifyConditions": [
"@semantic-release/github"
2018-11-18 17:03:24 -02:00
],
2018-11-18 18:46:23 -02:00
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog"
],
2018-11-18 17:03:24 -02:00
"prepare": [
2018-11-12 16:01:16 -02:00
"@semantic-release/npm",
2018-11-18 16:26:11 -02:00
{
2018-11-18 17:03:24 -02:00
"path": "@semantic-release/exec",
"cmd": "git status"
},
2018-11-18 18:46:23 -02:00
"@semantic-release/changelog",
2018-11-18 17:03:24 -02:00
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
2018-11-18 17:03:24 -02:00
]
2018-11-18 16:26:11 -02:00
}
2018-11-18 17:03:24 -02:00
],
"publish": [
"@semantic-release/npm",
2018-11-12 16:01:16 -02:00
"@semantic-release/github"
],
"analyzeCommits": "simple-commit-message"
2018-11-18 17:03:24 -02:00
},
"config": {
2018-11-12 12:40:35 -02:00
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"pre-git": {
"commit-msg": "simple",
"pre-commit": [],
"pre-push": [],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
2018-04-21 02:59:30 -03:00
}
}