-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
46
{
"name": "offerland_linebot",
"version": "0.0.1",
"description": "OfferLand boardcasting LINE Webhook application",
"main": "dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "functions-framework --target=handleRequest",
"prestart": "yarn run build",
"gcp-build": "yarn run build",
"deploy": "sh deploy.sh",
"test": "jest",
"clean": "tsc --build --clean",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"keywords": [
"line",
"bot",
"webhook",
"offerland"
],
"author": "jschang19",
"license": "MIT",
"dependencies": {
"@google-cloud/functions-framework": "^3.2.1",
"@line/bot-sdk": "^7.5.2",
"@supabase/supabase-js": "^2.38.2",
"@types/node": "^20.6.3",
"dotenv": "^16.3.1",
"nanoid": "3"
},
"repository": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git",
"private": true,
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.7",
"typescript": "^5.2.2",
"typescript-eslint-parser": "^22.0.0"
}
}