-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 931 Bytes
/
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
{
"name": "@catcat/chatbot-engine",
"version": "1.0.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"predev:docker": "npm install",
"dev:docker": "npm run dev",
"dev": "nodemon --watch src --ext ts,js,json --exec \"ts-node .\"",
"prepare": "npm run build",
"build": "tsc",
"tsc": "tsc",
"test": "mocha test/.",
"test:watch": "mocha test/. --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@line/bot-sdk": "^6.2.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3"
},
"devDependencies": {
"@types/dialogflow": "^0.6.3",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
}
}