-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 KB
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
{
"name": "@api3/airnode-node",
"license": "MIT",
"version": "0.15.0",
"private": false,
"main": "dist/src/index",
"types": "dist/src/index",
"files": [
"dist"
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "rimraf -g *.tsbuildinfo ./dist ./build *.tgz",
"compile": "tsc --build tsconfig.json",
"dev:invoke": "ts-node src/cli/validate-config.ts && ts-node src/cli/invoke.ts",
"dev:http-data-invoke": "ts-node src/cli/http-data-invoke.ts",
"dev:http-signed-data-invoke": "ts-node src/cli/http-signed-data-invoke.ts",
"dev:run-gateways-server": "ts-node -T src/workers/local-gateways/run-server.ts",
"pack": "yarn pack",
"test:e2e": "SILENCE_LOGGER=true jest --selectProjects e2e",
"test:e2e:debug": "jest \"http.feature\" --selectProjects e2e",
"test:e2e:watch": "yarn test:e2e --watch",
"test": "SILENCE_LOGGER=true jest --selectProjects unit",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@api3/airnode-abi": "^0.15.0",
"@api3/airnode-adapter": "^0.15.0",
"@api3/airnode-protocol": "^0.15.0",
"@api3/airnode-utilities": "^0.15.0",
"@api3/airnode-validator": "^0.15.0",
"@api3/chains": "^8.1.1",
"@api3/commons": "^0.9.0",
"@api3/ois": "2.3.2",
"@api3/promise-utils": "^0.4.0",
"@aws-sdk/client-lambda": "^3.525.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.7",
"ethers": "^5.7.2",
"express": "^4.21.2",
"google-auth-library": "^9.6.3",
"lodash": "^4.17.21",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@api3/airnode-operation": "^0.15.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/node": "^22.12.0",
"@types/yargs": "^17.0.32",
"aws-sdk-client-mock": "^4.0.0",
"aws-sdk-client-mock-jest": "^4.0.0",
"copyfiles": "^2.4.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}