forked from valora-inc/address-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.72 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "address-metadata",
"version": "0.0.1",
"description": "Package for storing and updating static RTDB data",
"private": true,
"main": "dist/index.js",
"engines": {
"node": "^20"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"build:scripts": "tsc --project scripts/tsconfig.json",
"typecheck": "yarn build && yarn build:scripts",
"lint": "eslint --ext=.tsx,.ts,.json src/ scripts/",
"lint:fix": "yarn lint --fix",
"format": "prettier --loglevel error --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --ci --coverage",
"supercheck": "yarn format && yarn lint:fix && yarn typecheck && yarn test",
"diff": "ts-node scripts/diff.ts",
"update:rtdb": "ts-node scripts/update-rtdb.ts",
"update:bq": "ts-node scripts/update-bq.ts",
"update:mixpanel": "ts-node scripts/update-mixpanel.ts",
"deploy:dev": "gcloud beta functions deploy --gen2 --region=us-central1 --concurrency=80 --cpu=1 --memory=256MB --project=celo-mobile-alfajores --runtime=nodejs20 --trigger-http --allow-unauthenticated --env-vars-file=config-dev.yaml",
"deploy:prod": "gcloud beta functions deploy --gen2 --region=us-central1 --concurrency=80 --cpu=1 --memory=256MB --project=celo-mobile-mainnet --runtime=nodejs20 --trigger-http --allow-unauthenticated --env-vars-file=config-prod.yaml"
},
"prettier": "@valora/prettier-config",
"repository": "[email protected]:valora-inc/rtdb-data.git",
"author": "Valora Inc",
"contributors": [
"Joseph Bergeron <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@types/node": "^17.0.45",
"@valora/http-handler": "^0.0.1",
"@valora/logging": "^1.3.17",
"dotenv": "^16.4.5",
"firebase-admin": "^12.3.0",
"joi": "^17.13.3",
"json-diff": "^1.0.6",
"semver": "^7.6.3",
"typescript": "~5.5.4",
"viem": "^2.16.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@google-cloud/bigquery": "^7.7.0",
"@google-cloud/functions-framework": "^3.4.0",
"@json2csv/plainjs": "^7.0.6",
"@types/jest": "^29.5.12",
"@types/json-diff": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@valora/eslint-config-typescript": "^1.0.2",
"@valora/prettier-config": "^0.0.1",
"axios": "^1.6.8",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.0.11",
"image-size": "^1.1.1",
"jest": "^29.7.0",
"jimp": "^0.22.12",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2"
}
}