botserver/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

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",
"preferGlobal": "true",
"bin": {
"gbot": "./dist/src/app.js"
},
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": {
"@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",
"botlib": "0.0.12",
"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",
"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",
"sqlite3": "^4.0.0",
2018-04-21 02:59:30 -03:00
"tedious": "^2.1.1",
"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",
"winston": "^2.4.0"
2018-04-21 02:59:30 -03:00
}
}