botserver/package.json
2018-09-09 14:39:37 -03:00

75 lines
2.2 KiB
JSON

{
"name": "botserver",
"version": "0.0.29",
"description": "General Bot Community Edition open-core server.",
"main": "./src/app.ts",
"homepage": "http://www.generalbot.com",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
"Jorge Ramos <jramos@pobox.com>"
],
"license": "AGPL-3.0",
"preferGlobal": true,
"bin": {
"gbot": "./dist/src/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pragmatismo-io/BotServer.git"
},
"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": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"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",
"botlib": "^0.0.33",
"chokidar": "^2.0.4",
"csv-parse": "^3.0.0",
"dotenv-extended": "^2.2.0",
"express": "^4.16.3",
"fs-extra": "^7.0.0",
"fs-walk": "^0.0.2",
"marked": "^0.5.0",
"pragmatismo-io-framework": "^1.0.15",
"reflect-metadata": "^0.1.12",
"request-promise-native": "^1.0.5",
"sequelize": "^4.38.0",
"sequelize-typescript": "^0.6.6",
"sqlite3": "^4.0.2",
"swagger-client": "^3.8.15",
"tedious": "^2.6.4",
"url-join": "^4.0.0",
"wait-until": "^0.0.2",
"walk-promise": "^0.2.0",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/sequelize": "^4.27.25",
"@types/url-join": "^0.8.2",
"@types/winston": "^2.4.4",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"ts-node": "^7.0.1",
"typedoc": "^0.12.0",
"typescript": "^3.0.3"
}
}