-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 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
{
"name": "catcat-bots",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"_postinstall": "npm link ../catcat-chatbot-engine",
"build": "tsc -w",
"build:once": "tsc",
"dev": "nodemon --watch src --ext ts,js,json --exec \"ts-node .\"",
"test": "nodemon --watch src --ext ts,js,json --exec \"ts-node src/test.ts\"",
"lint": "eslint .",
"_setup": "npm link ../catcat-chatbot-engine"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@catcat/chatbot-engine": "git+https://github.com/catcatio/catcat-chatbot-engine.git",
"@google-cloud/translate": "^2.1.1",
"@line/bot-sdk": "^6.1.1",
"@rabbotio/noconsole": "^1.1.0",
"actions-on-google": "^2.4.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dialogflow": "^0.6.0",
"dialogflow-fulfillment": "^0.6.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-http-context": "^1.0.4",
"line-pay": "^1.0.11",
"mailgun-js": "^0.21.0",
"pg": "^7.5.0",
"reflect-metadata": "^0.1.12",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sequelize": "^4.39.0",
"sequelize-typescript": "^0.6.6",
"tsconfig-paths": "^3.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/dialogflow": "^0.6.3",
"@types/express": "^4.16.0",
"@types/node": "^10.9.2",
"@types/request-promise-native": "^1.0.15",
"nodemon": "^1.18.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}