botserver/package.json
2018-05-27 18:15:33 -03:00

65 lines
1.8 KiB
JSON

{
"name": "botserver",
"version": "0.0.25",
"description": "General Bot Community Edition open-core server.",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>"
],
"license": "AGPL-3.0",
"main": "./src/app.ts",
"preferGlobal": "true",
"bin": {
"gbot": "./dist/src/app.js"
},
"homepage": "http://www.generalbot.com",
"repository": {
"type": "git",
"url": "https://github.com/pragmatismo-io/BotServer"
},
"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": {
"@types/azure": "^0.9.19",
"@types/chai": "4.1.3",
"@types/mocha": "5.2.0",
"@types/url-join": "^0.8.2",
"async": "^2.6.0",
"body-parser": "^1.18.2",
"botbuilder": "^3.15.0",
"botlib": "0.0.23",
"chai": "^4.1.2",
"chokidar": "^2.0.2",
"csv-parse": "^2.4.0",
"dotenv-extended": "^2.0.2",
"express": "^4.16.2",
"fs-extra": "^6.0.1",
"fs-walk": "0.0.2",
"marked": "^0.3.12",
"mocha": "^5.1.1",
"mocha-typescript": "^1.1.12",
"pragmatismo-io-framework": "^1.0.12",
"reflect-metadata": "^0.1.12",
"request-promise-native": "^1.0.5",
"sequelize": "^4.37.6",
"sequelize-typescript": "^0.6.3",
"sqlite3": "^4.0.0",
"swagger-client": "^2.1.18",
"tedious": "^2.1.1",
"ts-node": "6.0.3",
"typedoc": "^0.11.1",
"typescript": "2.8.3",
"url-join": "^4.0.0",
"wait-until": "0.0.2",
"winston": "^2.4.0"
}
}