2018-04-21 02:59:30 -03:00
|
|
|
{
|
|
|
|
"name": "botserver",
|
2018-09-24 15:28:35 -03:00
|
|
|
"version": "0.1.4",
|
2018-05-07 20:45:11 -03:00
|
|
|
"description": "General Bot Community Edition open-core server.",
|
2018-05-29 05:27:52 -03:00
|
|
|
"main": "./src/app.ts",
|
|
|
|
"homepage": "http://www.generalbot.com",
|
2018-05-07 20:45:11 -03:00
|
|
|
"contributors": [
|
2018-05-28 06:51:06 -03:00
|
|
|
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
|
|
|
|
"Jorge Ramos <jramos@pobox.com>"
|
2018-05-07 20:45:11 -03:00
|
|
|
],
|
2018-04-21 02:59:30 -03:00
|
|
|
"license": "AGPL-3.0",
|
2018-05-28 06:51:06 -03:00
|
|
|
"preferGlobal": true,
|
2018-04-26 22:40:51 -03:00
|
|
|
"bin": {
|
2018-05-05 08:26:00 -03:00
|
|
|
"gbot": "./dist/src/app.js"
|
2018-04-26 22:40:51 -03:00
|
|
|
},
|
2018-05-18 22:21:23 -03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-05-29 05:27:52 -03:00
|
|
|
"url": "https://github.com/pragmatismo-io/BotServer.git"
|
2018-05-12 16:14:59 -03:00
|
|
|
},
|
2018-04-21 02:59:30 -03:00
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf dist",
|
|
|
|
"start": "node ./dist/src/app.js",
|
|
|
|
"startIde": "npm-run-all clean --parallel watch:build watch:server --print-label",
|
|
|
|
"watch:build": "tsc --watch",
|
|
|
|
"watch:server": "nodemon './dist/index.js' --watch './dist'",
|
|
|
|
"test": "mocha -r ts-node/register src/**/*.test.ts",
|
|
|
|
"build-docs": "typedoc --options typedoc.json src/"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.9.4"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-09-24 11:04:36 -03:00
|
|
|
"@microsoft/microsoft-graph-client": "^1.3.0",
|
|
|
|
"adal-node": "^0.1.28",
|
2018-05-29 05:27:52 -03:00
|
|
|
"async": "^2.6.1",
|
2018-09-09 16:18:26 -03:00
|
|
|
"async-promises": "^0.2.1",
|
2018-05-29 05:27:52 -03:00
|
|
|
"body-parser": "^1.18.3",
|
2018-06-04 05:33:37 -03:00
|
|
|
"botbuilder": "^4.0.0-preview1.2",
|
|
|
|
"botbuilder-ai": "^4.0.0-preview1.2",
|
|
|
|
"botbuilder-azure": "^4.0.0-preview1.2",
|
|
|
|
"botbuilder-choices": "^4.0.0-preview1.2",
|
|
|
|
"botbuilder-dialogs": "^4.0.0-preview1.2",
|
|
|
|
"botbuilder-prompts": "^4.0.0-preview1.2",
|
2018-09-24 11:04:36 -03:00
|
|
|
"botlib": "^0.1.1",
|
2018-09-01 13:51:58 -03:00
|
|
|
"chokidar": "^2.0.4",
|
|
|
|
"csv-parse": "^3.0.0",
|
2018-09-16 17:00:17 -03:00
|
|
|
"dotenv-extended": "^2.3.0",
|
2018-09-01 13:51:58 -03:00
|
|
|
"express": "^4.16.3",
|
2018-09-09 16:40:04 -03:00
|
|
|
"express-promise-router": "^3.0.3",
|
2018-09-01 13:51:58 -03:00
|
|
|
"fs-extra": "^7.0.0",
|
2018-05-29 05:27:52 -03:00
|
|
|
"fs-walk": "^0.0.2",
|
2018-09-13 18:21:22 -03:00
|
|
|
"localize": "^0.4.7",
|
2018-09-01 13:51:58 -03:00
|
|
|
"marked": "^0.5.0",
|
2018-09-16 17:00:17 -03:00
|
|
|
"ms": "^2.1.1",
|
|
|
|
"nexmo": "^2.3.2",
|
2018-09-01 13:51:58 -03:00
|
|
|
"pragmatismo-io-framework": "^1.0.15",
|
2018-04-21 02:59:30 -03:00
|
|
|
"reflect-metadata": "^0.1.12",
|
|
|
|
"request-promise-native": "^1.0.5",
|
2018-09-16 17:00:17 -03:00
|
|
|
"sequelize": "^4.38.1",
|
2018-09-01 13:51:58 -03:00
|
|
|
"sequelize-typescript": "^0.6.6",
|
|
|
|
"sqlite3": "^4.0.2",
|
2018-09-16 17:00:17 -03:00
|
|
|
"swagger-client": "^3.8.21",
|
2018-09-01 13:51:58 -03:00
|
|
|
"tedious": "^2.6.4",
|
2018-04-21 02:59:30 -03:00
|
|
|
"url-join": "^4.0.0",
|
2018-05-29 05:27:52 -03:00
|
|
|
"wait-until": "^0.0.2",
|
2018-09-09 14:39:37 -03:00
|
|
|
"walk-promise": "^0.2.0",
|
2018-09-09 16:18:26 -03:00
|
|
|
"winston": "^3.1.0"
|
2018-05-29 05:27:52 -03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-09-01 13:51:58 -03:00
|
|
|
"@types/chai": "^4.1.4",
|
|
|
|
"@types/mocha": "^5.2.5",
|
|
|
|
"@types/sequelize": "^4.27.25",
|
2018-05-29 05:27:52 -03:00
|
|
|
"@types/url-join": "^0.8.2",
|
2018-09-01 13:51:58 -03:00
|
|
|
"@types/winston": "^2.4.4",
|
2018-05-29 05:27:52 -03:00
|
|
|
"chai": "^4.1.2",
|
|
|
|
"mocha": "^5.2.0",
|
2018-09-01 13:51:58 -03:00
|
|
|
"mocha-typescript": "^1.1.17",
|
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"typedoc": "^0.12.0",
|
|
|
|
"typescript": "^3.0.3"
|
2018-04-21 02:59:30 -03:00
|
|
|
}
|
2018-05-28 07:03:26 -03:00
|
|
|
}
|