2018-04-21 02:59:30 -03:00
|
|
|
{
|
|
|
|
"name": "botserver",
|
2018-05-06 19:26:45 -03:00
|
|
|
"version": "0.0.18",
|
2018-04-21 03:21:03 -03:00
|
|
|
"description": "General Bots Community Edition open-core server.",
|
2018-04-21 02:59:30 -03:00
|
|
|
"author": "me@rodrigorodriguez.com",
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"main": "./src/app.ts",
|
2018-04-26 22:40:51 -03:00
|
|
|
"preferGlobal": "true",
|
|
|
|
"bin": {
|
2018-05-05 08:26:00 -03:00
|
|
|
"gbot": "./dist/src/app.js"
|
2018-04-26 22:40:51 -03:00
|
|
|
},
|
2018-04-21 02:59:30 -03:00
|
|
|
"homepage": "http://pragmatismo.io",
|
|
|
|
"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-05-05 08:26:00 -03:00
|
|
|
"@types/azure": "^0.9.19",
|
|
|
|
"@types/chai": "4.0.4",
|
|
|
|
"@types/mocha": "2.2.43",
|
2018-04-21 02:59:30 -03:00
|
|
|
"async": "^1.5.2",
|
|
|
|
"botbuilder": "^3.14.0",
|
2018-04-23 13:52:03 -03:00
|
|
|
"botlib": "0.0.12",
|
2018-05-05 08:26:00 -03:00
|
|
|
"chai": "^4.1.2",
|
2018-04-21 02:59:30 -03:00
|
|
|
"chokidar": "^2.0.2",
|
|
|
|
"csv-parse": "^2.2.0",
|
|
|
|
"dotenv-extended": "^1.0.4",
|
|
|
|
"express": "^4.16.2",
|
2018-04-25 02:03:45 -03:00
|
|
|
"fs-extra": "^5.0.0",
|
2018-04-21 02:59:30 -03:00
|
|
|
"fs-walk": "0.0.1",
|
|
|
|
"marked": "^0.3.12",
|
2018-05-05 08:26:00 -03:00
|
|
|
"mocha": "^3.5.3",
|
|
|
|
"mocha-typescript": "^1.1.12",
|
|
|
|
"pragmatismo-io-framework": "^1.0.11",
|
2018-04-21 02:59:30 -03:00
|
|
|
"reflect-metadata": "^0.1.12",
|
|
|
|
"request-promise-native": "^1.0.5",
|
|
|
|
"sequelize": "^4.37.6",
|
|
|
|
"sequelize-typescript": "^0.6.3",
|
2018-05-05 08:26:00 -03:00
|
|
|
"sqlite3": "^4.0.0",
|
2018-04-21 02:59:30 -03:00
|
|
|
"tedious": "^2.1.1",
|
2018-05-05 08:26:00 -03:00
|
|
|
"ts-node": "3.3.0",
|
|
|
|
"typedoc": "^0.10.0",
|
|
|
|
"typescript": "2.7.2",
|
2018-04-21 02:59:30 -03:00
|
|
|
"url-join": "^4.0.0",
|
|
|
|
"wait-until": "0.0.2",
|
2018-05-05 08:26:00 -03:00
|
|
|
"winston": "^2.4.0"
|
2018-04-21 02:59:30 -03:00
|
|
|
}
|
|
|
|
}
|