This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.69 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
75
76
77
78
79
80
81
82
{
"name": "@valora/indexer",
"description": "Store events on the Celo blockchain into a relational database",
"version": "0.0.5",
"main": "dist/index.js",
"author": "Valora Inc",
"license": "Apache-2.0",
"scripts": {
"add-migration": "knex migrate:make -x ts --migrations-directory src/migrations",
"build": "tsc",
"gcp-build": "npm run build",
"test": "cp config/config.test.env .env; DB_TYPE=sqlite jest --coverage && prettier --check \"./{src,bin/test}/**/*.ts\"",
"test:watch": "yarn test --watch",
"format": "prettier --loglevel error --write \"./{src,bin/test}/**/*.ts\"",
"lint": "eslint --ext=.tsx,.ts src/ test/ bin/",
"e2e": "node e2e/run.js",
"run-local-db": "docker run --rm -p 5432:5432 -e POSTGRES_DB=indexer -e POSTGRES_PASSWORD=docker postgres",
"add-mock-data": "ts-node ./scripts/add-mock-recent-data.ts",
"start": "node ./dist/bin/indexer.js",
"start:local": "yarn build && cp config/config.local.env .env && node --inspect ./dist/bin/indexer.js"
},
"dependencies": {
"@celo/base": "1.5.1",
"@celo/contractkit": "1.5.1",
"@celo/utils": "1.5.1",
"@ethersproject/abi": "5.0.4",
"@google-cloud/secret-manager": "^3.9.0",
"async-polling": "^0.2.1",
"bignumber.js": "^9.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "~0.95.5",
"node-fetch": "^2.6.1",
"pg": "~8.6.0",
"tiny-async-pool": "~1.2.0",
"web3-eth-abi": "1.3.0",
"web3-utils": "1.3.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.3",
"@types/async-polling": "^0.0.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.24",
"@types/node-fetch": "^2.5.7",
"@types/tiny-async-pool": "~1.0.0",
"@types/utf8": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@valora/eslint-config-typescript": "^0.0.1",
"@valora/ops": "^1.0.3",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"prettier": "^2.3.2",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.9.1",
"typescript": "~4.3.2"
},
"peerDependencies": {
"@celo/flake-tracker": "0.0.1-dev"
},
"engines": {
"node": "^18"
},
"resolutions": {
"web3-eth-abi/**/@ethersproject/abi": "5.0.4",
"node-gyp": "5.0.1",
"tar": "4.4.18",
"lodash": "4.17.21",
"react-native-ntp-client": "^1.0.0",
"**/codecov/**/js-yaml": "^3.13.1",
"**/deep-extend": "^0.5.1",
"**/extend": "^3.0.2",
"sha3": "1.2.3",
"node-hid": "0.7.3"
}
}