-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 827 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
{
"name": "dialogflow-cx-webhook-typescript",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"build:watch": "tsc --watch",
"start": "functions-framework --target=HandleWebhookRequest",
"prestart": "yarn build",
"gcp-build": "yarn build"
},
"keywords": [],
"author": "Xavier Portilla Edo",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/dialogflow-cx": "^4.1.0",
"@google-cloud/functions-framework": "^3.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"typescript": "^5.2.0"
},
"private": true
}