-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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": "doggo-bot",
"version": "1.0.0",
"description": "Slack Doggo bot",
"main": "index.js",
"author": "Denver Pierce <Denver.Pierec@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/logging-winston": "^1.1.1",
"@slack/events-api": "^2.3.4",
"@slack/web-api": "^5.13.0",
"axios": "^0.21.0",
"winston": "^3.2.1",
"zod": "^3.5.1"
},
"devDependencies": {
"@types/node": "12.x",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"express": "^4.16.4",
"ts-node": "^8.1.0",
"tsc-watch": "^2.1.2",
"typescript": "^4.0.3"
},
"scripts": {
"compile": "yarn tsc",
"dev": "yarn tsc-watch --onSuccess 'yarn run start'",
"dev-run": "yarn tsc-watch --onSuccess './scripts/dev-build-run.sh'",
"build-deploy": "./scripts/build-deploy-gcf.sh",
"start": "cd build;functions-framework --target ${FUNCTION_TARGET};cd .."
}
}