-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "houston",
"version": "0.0.1",
"description": "Mission control for consulting operations",
"main": "dist/app.js",
"author": "Dan Pickett <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"dev:watch": "yarn run nodemon --exec sam build",
"dev:serve": "sam local start-api --env-vars ./.env.development.json --debug"
},
"devDependencies": {
"@launchware/eslint-config-node": "^0.0.4",
"@types/aws-lambda": "^8.10.125",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"lambda-local": "^2.1.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@slack/bolt": "^3.14.0",
"aws-lambda": "^1.0.7",
"botbuilder-adapter-slack": "^1.0.14",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"got": "^13.0.0"
}
}