-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "bot-food",
"private": true,
"version": "1.0.0",
"description": "Food Bot. Skype bot to organize lunch at work.",
"license": "Apache 2.0",
"repository": "https://github.com/palmerabollo/bot-food",
"author": "Guido García <[email protected]> (https://twitter.com/palmerabollo)",
"keywords": [
"assistant",
"bot",
"lunch"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./lib",
"compile": "tsc",
"lint": "tslint './src/**/*.ts'",
"prepublish": "npm run build",
"prestart": "npm install",
"postinstall": "npm run build",
"watch": "npm-run-all --parallel watch:*",
"watch-console": "BOT_CONSOLE=1 npm run watch",
"watch:ts": "tsc -w",
"watch:js": "nodemon --delay 2 --watch lib -e js --exec 'node -r dotenv/config lib/index.js'",
"start": "node -r dotenv/config lib/index.js",
"debug": "npm start -- -c --debug-brk"
},
"dependencies": {
"aws-sdk": "^2.595.0",
"botbuilder": "^3.16.0",
"botbuilder-aws-lambda": "^1.0.2",
"logops": "^2.1.1"
},
"devDependencies": {
"@types/node": "^12.12.21",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=10"
}
}