-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "priority-pool-ea",
"version": "1.0.0",
"description": "Chainlink external adapter for priority pool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/stakedotlink/priority-pool-ea",
"type": "git"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"build": "tsc -b",
"start": "node -e 'require(\"./dist/index.js\").server()'",
"verify-distribution": "ts-node --files scripts/verify-distribution.ts",
"test": "EA_PORT=0 METRICS_ENABLED=false jest"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@chainlink/external-adapter-framework": "0.30.2",
"@openzeppelin/merkle-tree": "^1.0.5",
"bs58": "^5.0.0",
"ethers": "^6.7.0",
"jest": "^29.6.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/babel__preset-env": "^7.9.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "27.5.2",
"@types/node": "16.11.51",
"@types/supertest": "2.0.12",
"axios": "^1.6.2",
"fs-extra": "^11.1.1",
"nock": "13.2.9",
"prettier": "^3.0.1",
"supertest": "6.2.4",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
}
}