-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 816 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": "ics",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"build": "npx tsc",
"dev": "npx tsc --watch",
"gcp-build": "npm run build",
"gcp-watch": "npm-watch gcp-dev",
"gcp-dev": "npx @google-cloud/functions-framework --target=\"main\"",
"start": "npm run build && npx @google-cloud/functions-framework --target=\"main\"",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run gcp-build",
"deploy": "npx zx ./bin/deploy.mjs"
},
"watch": {
"gcp-dev": "./dist/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@google-cloud/functions-framework": "^3.1.3",
"npm-watch": "^0.11.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"zx": "^7.1.1"
}
}