-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.23 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
{
"name": "contribution-updater",
"version": "1.0.0",
"description": "Updates public contribution of user on github to s3 bucket or cloudflare r2",
"main": "src/index.js",
"files": [
"build/src"
],
"author": "Tarun Singh",
"scripts": {
"start": "cross-env NODE_ENV=production functions-framework --source=build/src/ --target=index",
"compile": "tsc",
"predeploy": "npm run compile",
"deploy": "cross-env NODE_ENV=production gcloud functions deploy contrib-updater --region=northamerica-northeast2 --runtime nodejs16 --entry-point=index --gen2 --source ./build --trigger-http",
"watch": "concurrently \"npm run compile -- --watch\" \"nodemon --watch ./build/ --exec npm run debug\"",
"debug": "cross-env NODE_ENV=development node --inspect node_modules/.bin/functions-framework --source=build/src/ --target=index"
},
"devDependencies": {
"@types/node": "^20.12.5",
"concurrently": "^7.6.0",
"gts": "^3.1.1",
"nodemon": "^2.0.22",
"typescript": "~4.7.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.550.0",
"@google-cloud/functions-framework": "^3.3.0",
"@google/events": "^5.4.0",
"@octokit/rest": "^19.0.13",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5"
}
}