2018-04-21 02:59:30 -03:00
|
|
|
{
|
|
|
|
"name": "botserver",
|
2022-08-06 00:56:26 +00:00
|
|
|
"version": "2.0.160",
|
2018-05-07 20:45:11 -03:00
|
|
|
"description": "General Bot Community Edition open-core server.",
|
2019-05-27 08:46:17 -03:00
|
|
|
"main": "./boot.js",
|
2018-11-12 13:53:21 -02:00
|
|
|
"bugs": "https://github.com/pragmatismo-io/BotServer/issues",
|
|
|
|
"homepage": "https://github.com/pragmatismo-io/BotServer/#readme",
|
2018-05-07 20:45:11 -03:00
|
|
|
"contributors": [
|
2018-05-28 06:51:06 -03:00
|
|
|
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
|
2019-10-10 07:40:15 -03:00
|
|
|
"João Ferreira <joao.parana@gmail.com>",
|
2020-04-02 19:03:57 -03:00
|
|
|
"Jorge Ramos <jramos@pobox.com>",
|
|
|
|
"PH <ph.an@outlook.com>",
|
2020-04-02 21:07:23 -03:00
|
|
|
"Dário Vieira <dario.junior3@gmail.com>"
|
|
|
|
],
|
2018-11-12 13:53:21 -02:00
|
|
|
"engines": {
|
2021-08-30 07:14:59 -03:00
|
|
|
"node": "=14.10.1"
|
2018-11-12 13:53:21 -02:00
|
|
|
},
|
2018-04-21 02:59:30 -03:00
|
|
|
"license": "AGPL-3.0",
|
2018-05-28 06:51:06 -03:00
|
|
|
"preferGlobal": true,
|
2020-02-25 10:13:38 -03:00
|
|
|
"private": false,
|
2018-04-26 22:40:51 -03:00
|
|
|
"bin": {
|
2019-05-27 08:46:17 -03:00
|
|
|
"gbot": "./boot.js"
|
2018-04-26 22:40:51 -03:00
|
|
|
},
|
2018-05-18 22:21:23 -03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-01-08 13:03:44 -03:00
|
|
|
"url": "https://github.com/GeneralBots/BotServer.git"
|
2018-05-12 16:14:59 -03:00
|
|
|
},
|
2018-04-21 02:59:30 -03:00
|
|
|
"scripts": {
|
2018-11-12 12:20:44 -02:00
|
|
|
"clean": "shx rm -rf node_modules/ dist/ docs/reference",
|
2019-03-08 17:05:58 -03:00
|
|
|
"tslint": "tslint --fix ./src/*.ts ./packages/**/*.ts -t verbose -e ./packages/default.gbui/**/* -e ./packages/**/*.gbdialog/**/*",
|
2022-06-08 13:24:43 -03:00
|
|
|
"build": "npm install && npm run build-server && npm run build-gbui",
|
2018-11-18 21:28:26 -02:00
|
|
|
"build-server": "tsc",
|
2018-11-18 22:03:46 -02:00
|
|
|
"build-gbui": "cd packages/default.gbui && echo SKIP_PREFLIGHT_CHECK=true >.env && npm install && npm run build",
|
2018-11-11 17:31:17 -02:00
|
|
|
"build-docs": "typedoc --options typedoc.json src/",
|
2022-07-01 10:40:28 -03:00
|
|
|
"test": "node test.js",
|
2019-05-27 08:46:17 -03:00
|
|
|
"start": "node ./boot.js",
|
2020-01-08 17:52:46 -03:00
|
|
|
"reverse-proxy": "node_modules/.bin/ngrok http 4242",
|
2018-11-11 18:00:37 -02:00
|
|
|
"watch:build": "tsc --watch",
|
2018-11-12 12:20:44 -02:00
|
|
|
"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",
|
2018-11-12 12:20:44 -02:00
|
|
|
"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",
|
2018-11-12 12:20:44 -02:00
|
|
|
"semantic-release": "semantic-release",
|
2018-11-12 12:40:35 -02:00
|
|
|
"commit": "git-cz"
|
2018-04-21 02:59:30 -03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-11-16 14:53:52 -03:00
|
|
|
"@azure/cognitiveservices-computervision": "8.1.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"@azure/ms-rest-js": "2.5.1",
|
2021-11-16 14:53:52 -03:00
|
|
|
"@google-cloud/pubsub": "2.13.0",
|
|
|
|
"@google-cloud/translate": "6.2.6",
|
2021-12-19 16:39:50 -03:00
|
|
|
"@hubspot/api-client": "5.0.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"@microsoft/microsoft-graph-client": "2.2.1",
|
2020-11-22 11:22:55 -03:00
|
|
|
"@semantic-release/changelog": "5.0.1",
|
|
|
|
"@semantic-release/exec": "5.0.0",
|
|
|
|
"@semantic-release/git": "9.0.0",
|
2021-11-16 14:53:52 -03:00
|
|
|
"@sendgrid/mail": "7.4.4",
|
2021-06-13 11:51:07 -03:00
|
|
|
"@types/validator": "13.1.4",
|
|
|
|
"adal-node": "0.2.2",
|
2021-11-16 14:53:52 -03:00
|
|
|
"adm-zip": "0.5.6",
|
2022-06-04 17:02:34 -03:00
|
|
|
"alasql": "^1.7.3",
|
2020-11-22 11:22:55 -03:00
|
|
|
"any-shell-escape": "0.1.1",
|
|
|
|
"async-promises": "0.2.3",
|
2019-12-31 16:12:06 -03:00
|
|
|
"azure-arm-cognitiveservices": "3.0.0",
|
2020-07-12 10:13:54 -03:00
|
|
|
"azure-arm-resource": "7.4.0",
|
2019-05-14 23:02:21 -03:00
|
|
|
"azure-arm-search": "1.3.0-preview",
|
|
|
|
"azure-arm-sql": "5.7.0",
|
2018-11-14 21:56:50 +00:00
|
|
|
"azure-arm-website": "5.7.0",
|
2019-08-29 19:59:58 -03:00
|
|
|
"azure-search-client": "3.1.5",
|
2022-06-03 15:09:24 -03:00
|
|
|
"billboard.js": "^3.4.1",
|
2020-02-25 10:13:38 -03:00
|
|
|
"bluebird": "3.7.2",
|
2019-05-14 23:02:21 -03:00
|
|
|
"body-parser": "1.19.0",
|
2022-06-12 19:15:38 -03:00
|
|
|
"botbuilder": "4.11.0",
|
2021-07-06 13:18:38 -03:00
|
|
|
"botbuilder-adapter-facebook": "1.0.11",
|
2021-07-28 13:33:38 -03:00
|
|
|
"botbuilder-ai": "4.11.0",
|
|
|
|
"botbuilder-dialogs": "4.11.0",
|
|
|
|
"botframework-connector": "4.11.0",
|
2022-01-03 13:11:21 -03:00
|
|
|
"botlib": "1.10.1",
|
2022-06-03 07:43:20 -03:00
|
|
|
"c3-chart-maker": "^0.2.8",
|
2019-05-14 23:02:21 -03:00
|
|
|
"cli-spinner": "0.2.10",
|
2021-06-13 11:51:07 -03:00
|
|
|
"core-js": "3.14.0",
|
2022-06-03 07:43:20 -03:00
|
|
|
"data-forge": "^1.9.5",
|
2021-11-16 14:53:52 -03:00
|
|
|
"date-diff": "0.2.2",
|
2022-07-15 09:05:16 -03:00
|
|
|
"docxtemplater": "^3.31.1",
|
2020-11-22 11:22:55 -03:00
|
|
|
"dotenv-extended": "2.9.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"exceljs": "4.2.1",
|
2019-11-13 21:16:05 -03:00
|
|
|
"express": "4.17.1",
|
2019-08-29 19:59:58 -03:00
|
|
|
"express-remove-route": "1.0.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"ffmpeg-static": "4.3.0",
|
|
|
|
"google-libphonenumber": "3.2.21",
|
2021-06-16 16:14:10 -03:00
|
|
|
"googleapis": "75.0.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"ibm-watson": "6.1.1",
|
|
|
|
"js-beautify": "1.13.13",
|
2021-11-16 14:53:52 -03:00
|
|
|
"luxon": "2.0.2",
|
2022-07-15 09:05:16 -03:00
|
|
|
"mammoth": "^1.4.21",
|
2021-06-13 11:51:07 -03:00
|
|
|
"marked": "2.0.7",
|
2021-11-16 14:53:52 -03:00
|
|
|
"momentjs": "2.0.0",
|
2020-02-25 10:13:38 -03:00
|
|
|
"ms-rest-azure": "3.0.0",
|
2020-11-22 11:22:55 -03:00
|
|
|
"nexmo": "2.9.1",
|
2021-06-13 11:51:07 -03:00
|
|
|
"node-cron": "3.0.0",
|
2022-06-06 18:03:02 -03:00
|
|
|
"node-nlp": "^3.10.2",
|
2022-05-03 17:05:57 -03:00
|
|
|
"node-tesseract-ocr": "^2.2.1",
|
2021-08-26 08:55:49 -03:00
|
|
|
"npm": "7.21.0",
|
2019-04-07 12:23:27 -03:00
|
|
|
"opn": "6.0.0",
|
2021-11-16 14:53:52 -03:00
|
|
|
"pdf-extraction": "1.0.2",
|
2022-06-04 17:02:34 -03:00
|
|
|
"pdfkit": "^0.13.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"phone": "2.4.21",
|
2022-07-15 09:05:16 -03:00
|
|
|
"pizzip": "^3.0.6",
|
2022-07-12 13:30:12 -03:00
|
|
|
"pptxtemplater": "1.0.5",
|
2019-11-13 21:16:05 -03:00
|
|
|
"pragmatismo-io-framework": "1.0.20",
|
2021-06-13 11:51:07 -03:00
|
|
|
"prism-media": "1.3.1",
|
|
|
|
"public-ip": "4.0.4",
|
2022-05-19 10:22:22 -03:00
|
|
|
"puppeteer": "13.7.0",
|
2022-07-15 09:05:16 -03:00
|
|
|
"qrcode": "^1.5.0",
|
2022-07-12 13:30:12 -03:00
|
|
|
"qrcode-terminal": "0.12.0",
|
2020-04-28 20:54:04 -03:00
|
|
|
"readline": "1.3.0",
|
2019-02-01 10:58:11 -02:00
|
|
|
"reflect-metadata": "0.1.13",
|
2019-11-13 21:16:05 -03:00
|
|
|
"request-promise": "4.2.5",
|
|
|
|
"request-promise-native": "1.0.8",
|
2020-07-12 10:13:54 -03:00
|
|
|
"rimraf": "3.0.2",
|
|
|
|
"safe-buffer": "5.2.1",
|
2020-11-22 11:22:55 -03:00
|
|
|
"scanf": "1.1.2",
|
2022-06-12 19:15:38 -03:00
|
|
|
"sequelize": "6.5.0",
|
|
|
|
"sequelize-cli": "6.2.0",
|
2022-01-03 13:11:21 -03:00
|
|
|
"sequelize-typescript": "2.1.0",
|
2021-06-13 11:51:07 -03:00
|
|
|
"simple-git": "2.39.1",
|
2021-11-16 14:53:52 -03:00
|
|
|
"speakingurl": "14.0.1",
|
2021-06-13 11:51:07 -03:00
|
|
|
"sppull": "2.7.0",
|
2022-05-19 10:22:22 -03:00
|
|
|
"ssr-for-bots": "1.0.1-c",
|
2019-05-14 23:02:21 -03:00
|
|
|
"strict-password-generator": "1.1.2",
|
2021-06-15 08:36:13 -03:00
|
|
|
"swagger-client": "2.1.18",
|
2022-06-04 17:02:34 -03:00
|
|
|
"tabulator-tables": "^5.2.6",
|
2022-01-03 13:11:21 -03:00
|
|
|
"tedious": "14.0.0",
|
2020-05-15 14:07:30 -03:00
|
|
|
"textract": "2.5.0",
|
2022-01-03 18:40:42 -03:00
|
|
|
"typescript": "3.6.4",
|
2019-11-13 21:16:05 -03:00
|
|
|
"url-join": "4.0.1",
|
2019-05-14 23:02:21 -03:00
|
|
|
"vbscript-to-typescript": "1.0.8",
|
2020-01-26 15:27:17 -03:00
|
|
|
"walk-promise": "0.2.0",
|
2022-07-12 13:30:12 -03:00
|
|
|
"washyourmouthoutwithsoap": "1.0.2",
|
|
|
|
"whatsapp-web.js": "1.17.0"
|
2018-11-11 10:50:58 -02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-19 10:22:22 -03:00
|
|
|
"@types/puppeteer": "5.4.6",
|
2019-02-01 10:58:11 -02:00
|
|
|
"@types/url-join": "4.0.0",
|
2018-11-12 15:43:25 -02:00
|
|
|
"@types/winston": "2.4.4",
|
2021-06-13 11:51:07 -03:00
|
|
|
"ban-sensitive-files": "1.9.15",
|
|
|
|
"commitizen": "4.2.4",
|
2020-11-22 11:22:55 -03:00
|
|
|
"cz-conventional-changelog": "3.3.0",
|
2020-02-25 10:13:38 -03:00
|
|
|
"dependency-check": "4.1.0",
|
2018-11-12 12:20:44 -02:00
|
|
|
"git-issues": "1.3.1",
|
2019-02-01 10:58:11 -02:00
|
|
|
"license-checker": "25.0.1",
|
2021-06-13 11:51:07 -03:00
|
|
|
"ngrok": "4.0.1",
|
2018-11-12 12:20:44 -02:00
|
|
|
"nsp": "3.2.1",
|
2020-07-12 10:13:54 -03:00
|
|
|
"prettier-standard": "16.4.1",
|
2021-06-13 11:51:07 -03:00
|
|
|
"semantic-release": "17.4.3",
|
|
|
|
"simple-commit-message": "4.1.2",
|
2019-02-01 10:58:11 -02:00
|
|
|
"travis-deploy-once": "5.0.11",
|
2021-06-13 11:51:07 -03:00
|
|
|
"ts-node": "10.0.0",
|
2020-12-31 15:36:19 -03:00
|
|
|
"tslint": "6.1.2",
|
2022-06-08 13:24:43 -03:00
|
|
|
"typedoc": "^0.22.17"
|
2018-11-11 17:31:17 -02:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
2018-11-12 12:20:44 -02:00
|
|
|
},
|
|
|
|
"release": {
|
2018-11-17 09:33:39 -02:00
|
|
|
"tagFormat": "${version}",
|
2018-11-12 17:02:11 -02:00
|
|
|
"debug": true,
|
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": [
|
2018-11-18 21:35:47 +00:00
|
|
|
"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"
|
2018-11-18 20:47:19 +00:00
|
|
|
],
|
|
|
|
"analyzeCommits": "simple-commit-message"
|
2018-11-18 17:03:24 -02:00
|
|
|
},
|
2018-11-12 12:20:44 -02:00
|
|
|
"config": {
|
2018-11-12 12:40:35 -02:00
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
},
|
2018-11-12 12:20:44 -02:00
|
|
|
"pre-git": {
|
|
|
|
"commit-msg": "simple",
|
2020-01-08 17:52:46 -03:00
|
|
|
"pre-commit": [],
|
|
|
|
"pre-push": [],
|
2018-11-12 12:20:44 -02:00
|
|
|
"post-commit": [],
|
|
|
|
"post-checkout": [],
|
|
|
|
"post-merge": []
|
|
|
|
}
|
2018-04-21 02:59:30 -03:00
|
|
|
}
|
2020-04-28 20:54:04 -03:00
|
|
|
}
|