-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 998 Bytes
/
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
{
"name": "zummarize",
"version": "1.0.0",
"main": "index.js",
"author": "Jonathan Lagneaux <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf functions/*",
"lint": "tslint --project tsconfig.json",
"cp-package": "cp package.json functions/",
"build": "yarn clean && yarn lint && yarn tsc && yarn cp-package",
"deploy": "./deploy.sh",
"gcp-build": ""
},
"keywords": [
"cloud",
"functions",
"typescript"
],
"dependencies": {
"@google-cloud/functions-framework": "^3.1.3",
"@slack/bolt": "^3.12.2",
"@slack/web-api": "^6.8.1",
"dotenv": "^16.0.3",
"groq-sdk": "^0.3.3",
"jsdom": "^21.1.0"
},
"devDependencies": {
"@types/express": "4.17.16",
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.0",
"@types/node": "^18.15.11",
"copyfiles": "2.4.1",
"express": "4.18.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"tslint": "6.1.3",
"typescript": "4.9.4"
}
}