botserver/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

2018-04-21 02:59:30 -03:00
{
"name": "botserver",
"version": "0.0.20",
"description": "General Bot Community Edition open-core server.",
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>"
],
2018-04-21 02:59:30 -03:00
"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",
"@types/url-join": "^0.8.2",
2018-04-21 02:59:30 -03:00
"async": "^1.5.2",
2018-05-11 23:27:00 -03:00
"body-parser": "^1.18.2",
2018-04-21 02:59:30 -03:00
"botbuilder": "^3.14.0",
"botlib": "0.0.19",
"chai": "^4.1.2",
2018-04-21 02:59:30 -03:00
"chokidar": "^2.0.2",
"csv-parse": "^2.4.0",
2018-04-21 02:59:30 -03:00
"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-05-11 23:27:00 -03:00
"swagger-client": "^2.1.18",
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",
2018-05-11 23:27:00 -03:00
"winston": "^2.4.0"
2018-04-21 02:59:30 -03:00
}
}