-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
{
"name": "functions",
"scripts": {
"lint": "eslint \"src/**/*\"",
"build": "tsc",
"watch": "tsc --watch",
"serve": "npm run build && firebase emulators:start --only functions",
"set-config": "firebase functions:config:get > .runtimeconfig.json",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "18"
},
"main": "lib/index.js",
"dependencies": {
"eth-json-rpc-infura": "^5.1.0",
"ethjs": "^0.4.0",
"firebase-admin": "^11.5.0",
"firebase-functions": "^4.4.0",
"moment": "^2.29.3"
},
"devDependencies": {
"@types/express-serve-static-core": "^4.17.33",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"firebase-functions-test": "^3.0.0",
"typescript": "^4.9.5"
},
"private": true
}