-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 996 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
32
{
"name": "jpyc-transfer-bigquery",
"description": "Periodically store JPYC Transfer Events in BigQuery",
"version": "0.1.0",
"main": "index.js",
"repository": "[email protected]:fujiwaraizuho/jpyc-transfer-bigquery.git",
"author": "fujiwaraizuho",
"license": "No License",
"dependencies": {
"@google-cloud/bigquery": "^5.12.0",
"@google-cloud/datastore": "^6.6.2",
"ethers": "^5.6.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.1.0",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"typescript": "^4.0.3"
},
"scripts": {
"start": "functions-framework --source=build/src/ --target=exec --signature-type=event",
"compile": "tsc",
"compile:hot": "tsc --watch"
}
}