-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "microsoft-summit-chatbot-course",
"version": "0.1.0",
"description": "Chatbot get started course for Microsoft Summit",
"main": "index.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"postinstall": "check-node-version --node \">= 10\"",
"start": "ts-node bot.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lijiarui/chatbot-zero-to-one"
},
"keywords": [],
"author": "Jiarui Li <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lijiarui/chatbot-zero-to-one/issues"
},
"homepage": "https://github.com/lijiarui/chatbot-zero-to-one#readme",
"dependencies": {
"@types/node": "^10.10.1",
"dotenv": "^8.2.0",
"luis-sdk": "^1.0.1",
"npm": "^6.4.1",
"qrcode-terminal": "^0.12.0",
"simple-qnamaker": "^0.1.2",
"ts-node": "^7.0.0",
"tslint": "^5.20.1",
"tslint-config-standard": "^8.0.1",
"typescript": "3.1.0-dev.20180731",
"wechaty": "^0.39.21",
"wechaty-plugin-contrib": "^0.2.16",
"wechaty-puppet-padplus": "0.0.150",
"wechaty-puppet-puppeteer": "^0.18.3"
},
"devDependencies": {
"check-node-version": "^3.2.0"
}
}