-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.84 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
{
"name": "celo-oracle",
"version": "2.0.14-beta",
"description": "Oracle application to aggregate and report exchange rates to the Celo network",
"author": "Celo",
"license": "Apache-2.0",
"repository": "[email protected]:celo-org/celo-oracle.git",
"private": true,
"scripts": {
"build": "tsc -b .",
"clean": "tsc -b . --clean",
"start": "node lib/index.js",
"dev": "pnpm run build && . .env.dev && pnpm run start",
"test": "jest",
"lint": "tslint -c tslint.json --project .",
"lint:tests": "tslint -c tslint.json 'test/**/*.test.ts'",
"prettify": "pnpm prettier --config .prettierrc.js --write '**/*.+(ts|tsx|js|jsx|sol|java)'",
"prettify:diff": "pnpm prettier --config .prettierrc.js --list-different '**/*.+(ts|tsx|js|jsx|sol|java)'",
"get-cert": "./scripts/get_cert_fingerprint.sh"
},
"dependencies": {
"@celo/connect": "5.3.0",
"@celo/contractkit": "8.0.0",
"@celo/utils": "6.0.0",
"@celo/wallet-hsm-aws": "5.2.0",
"@celo/wallet-hsm-azure": "5.2.0",
"bignumber.js": "^9.0.0",
"bunyan": "1.8.15",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"mathjs": "^7.5.1",
"node-fetch": "^2.6.1",
"prom-client": "^12.0.0",
"tslint-no-focused-test": "^0.5.0",
"web3": "1.10.4",
"web3-core": "1.10.4",
"web3-core-subscriptions": "1.10.4",
"web3-eth": "1.10.4"
},
"devDependencies": {
"@celo/typescript": "^0.0.2",
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.6",
"@types/jest": "29.5.12",
"@types/mathjs": "^6.0.5",
"@types/node-fetch": "^2.5.5",
"jest": "29.7.0",
"prettier": "2.1.1",
"ts-jest": "^29.1.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "5.4.2"
},
"packageManager": "[email protected]"
}