forked from api3dao/airseeker-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.01 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
83
84
85
86
87
88
{
"name": "@api3/airseeker",
"license": "MIT",
"version": "0.5.0",
"description": "A tool to update beacons with signed responses from remote Airnode gateways",
"main": "./dist/index.js",
"types": "./dist/validation",
"repository": {
"type": "git",
"url": "https://github.com/api3dao/airseeker.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "rimraf -rf ./build ./dist *.tgz",
"compile": "tsc --build tsconfig.json",
"dev:create-local-config": "ts-node scripts/create-local-config.js",
"dev:create-operations-config": "ts-node scripts/create-airseeker-config.ts",
"dev:setup-local-node": "hardhat run scripts/setup-local-node.js",
"dev:api": "ts-node test/server/server.ts",
"dev:eth-node": "hardhat node",
"dev:testing-services:start": "pm2 start test/testing-services.config.js",
"dev:testing-services:stop": "pm2 delete test/testing-services.config.js",
"format": "yarn prettier",
"format:fix": "yarn prettier:fix",
"lint": "yarn format && yarn eslint",
"lint:fix": "yarn format:fix && yarn eslint:fix",
"eslint": "eslint . --ext .js,.ts",
"eslint:fix": "eslint . --ext .js,.ts --fix",
"postinstall": "husky install",
"prettier": "prettier --check \"./**/*.{js,ts,md,yml,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,ts,md,yml,json}\" --ignore-unknown",
"test": "SILENCE_LOGGER=true jest --selectProjects unit",
"test:e2e": "jest --selectProjects e2e --runInBand"
},
"dependencies": {
"@api3/airnode-abi": "^0.8.0",
"@api3/airnode-node": "^0.8.0",
"@api3/airnode-protocol": "^0.8.0",
"@api3/airnode-protocol-v1": "^0.8.0",
"@api3/airnode-utilities": "^0.8.0",
"@api3/airnode-validator": "^0.9.0",
"@api3/promise-utils": "^0.3.0",
"axios": "^1.1.3",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"promise.any": "^2.0.4",
"source-map-support": "^0.5.21",
"zod": "^3.17.3"
},
"devDependencies": {
"@api3/operations": "^0.0.1-3aab393e33bda1f02a58538f8427e38cbb9d526e",
"@api3/airnode-admin": "0.8.0",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.5",
"@types/promise.any": "^2.0.0",
"@types/serverless": "^3.12.8",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.0",
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"express": "^4.18.1",
"hardhat": "^2.12.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"pm2": "^5.2.2",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"serverless": "^3.23.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}