-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 865 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
{
"name": "gcp-proxy",
"version": "1.0.0",
"description": "Simple proxy server in Google cloud",
"main": "src/proxy.js",
"scripts": {
"build": "rm -rf ./dist/* && tsc && cd dist && zip -r ./index.zip * && cd ..",
"start": "functions-framework --target=handler --source=./dist",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marcholio/gcp-proxy.git"
},
"author": "Markus Tyrkkö",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marcholio/gcp-proxy/issues"
},
"homepage": "https://github.com/Marcholio/gcp-proxy#readme",
"devDependencies": {
"@google-cloud/functions-framework": "^2.1.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.8",
"express": "^4.17.2",
"typescript": "^4.5.4"
},
"dependencies": {
"undici": "^4.12.2"
}
}