-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 KB
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
{
"name": "Zagu",
"version": "1.0.0",
"description": "Demonstrate the core capabilities of the Microsoft Bot Framework",
"author": "PowerBotKit Team",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"lint": "tslint --project ./tsconfig.json",
"start": "tsc --build && node ./dist/index.js",
"server-start": "node ./dist/index.js",
"watch": "nodemon --watch ./src -e ts --exec \"npm run start\""
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PowerBotK"
},
"dependencies": {
"@azure/core-amqp": "latest",
"@azure/event-hubs": "latest",
"@microsoft/recognizers-text-suite": "^1.3.0",
"botbuilder": "~4.9.0",
"dotenv": "^8.2.0",
"knex": "^0.21.5",
"lodash": "^4.17.20",
"redis": "^3.0.2",
"replace": "^1.2.0",
"restify": "~8.5.1",
"serialize-instance": "^1.0.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/knex": "^0.14.26",
"@types/lodash": "^4.14.161",
"@types/restify": "8.4.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"nodemon": "~2.0.4",
"prettier": "^2.1.2",
"tslint": "~6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.9.2"
}
}