-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@yeuai/rivebot-ce",
"version": "1.0.0",
"description": "Rivebot Community Edition - A vntk-based chatbot framework with Natural Language Understanding and Artificial Intelligence",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --require tsconfig-paths/register --respawn --transpileOnly ./app.ts",
"start:debug": "cross-env TZ=UTC NODE_ENV=development tsnd --require tsconfig-paths/register --inspect --respawn app.ts",
"start:prod": "node dist/app.js",
"build": "tsc -p tsconfig.build.json",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeuai/rivebot-ce.git"
},
"keywords": [
"chatbot",
"vntk",
"yeuai"
],
"author": "vunb",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeuai/rivebot-ce/issues"
},
"homepage": "https://rivebot.com/",
"dependencies": {
"@hasezoey/typegoose": "^5.9.2",
"@kites/common": "^1.1.7",
"@kites/core": "^1.1.7",
"@kites/express": "^1.1.7",
"@kites/rest": "^1.1.7",
"async": "^2.6.3",
"crfsuite": "^1.0.0",
"fasttext": "^1.0.0",
"handlebars": "^4.7.6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1",
"mongoose": "^5.7.6",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"vntk": "^1.4.2"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.15",
"@types/multer": "^1.3.9",
"@types/supertest": "^2.0.8",
"axios": "^0.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^6.0.3",
"mocha": "^8.1.2",
"mongodb-memory-server": "^5.2.0",
"supertest": "^3.4.2",
"ts-node-dev": "^1.0.0-pre.40",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}