forked from celo-org/celo-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.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
{
"name": "celo-oracle",
"version": "1.0.3",
"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": "yarn build && . .env.dev && yarn start",
"test": "jest",
"lint": "tslint -c tslint.json --project .",
"lint:tests": "tslint -c tslint.json 'test/**/*.test.ts'",
"prettify": "yarn run prettier --config .prettierrc.js --write '**/*.+(ts|tsx|js|jsx|sol|java)'",
"prettify:diff": "yarn run prettier --config .prettierrc.js --list-different '**/*.+(ts|tsx|js|jsx|sol|java)'"
},
"dependencies": {
"@celo/connect": "1.5.2",
"@celo/contractkit": "1.5.2",
"@celo/utils": "1.5.2",
"@celo/wallet-hsm-aws": "1.5.2",
"@celo/wallet-hsm-azure": "1.5.2",
"bignumber.js": "^8.1.1",
"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.3.6"
},
"devDependencies": {
"@celo/typescript": "^0.0.1",
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.6",
"@types/jest": "28.1.2",
"@types/mathjs": "^6.0.5",
"@types/node-fetch": "^2.5.5",
"jest": "28.1.2",
"prettier": "2.1.1",
"ts-jest": "^28.0.5",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^4.2.0",
"tslint-react-hooks": "^2.2.2",
"typescript": "4.4.3"
}
}