-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.64 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
{
"name": "@api3/airseeker",
"version": "3.9.0",
"keywords": [],
"license": "MIT",
"engines": {
"node": "20"
},
"files": [
"dist",
"src"
],
"main": "./dist/src/npm-exports.js",
"packageManager": "pnpm@9.14.2",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/api3dao/airseeker"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf coverage dist artifacts cache",
"create-release:npm": "ts-node scripts/create-npm-release.ts",
"dev:eth-node": "hardhat node",
"dev": "nodemon --ext ts,js,json,env --exec \"pnpm ts-node --transpileOnly src/index.ts\"",
"docker:build:amd64": "docker buildx build --no-cache --platform linux/amd64 --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:build": "docker build --no-cache --tag api3/airseeker:latest --file docker/Dockerfile .",
"docker:run": "docker run -it --init --volume $(pwd)/config:/app/config --network host --env-file .env --rm api3/airseeker:latest",
"eslint:check": "eslint --report-unused-disable-directives --cache --ext js,ts . --max-warnings 0",
"eslint:fix": "pnpm run eslint:check --fix",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,html}\"",
"prettier:fix": "prettier --write \"./**/*.{js,ts,md,json,html}\"",
"release:tag": "ts-node scripts/tag-and-release.ts",
"test:e2e": "jest --config=jest-e2e.config.js",
"test": "jest --config=jest-unit.config.js",
"tsc": "tsc --project ."
},
"dependencies": {
"@api3/chains": "^11.4.0",
"@api3/commons": "^0.13.4",
"@api3/contracts": "11.2.0",
"@api3/eslint-plugin-commons": "^3.0.0",
"@api3/promise-utils": "^0.4.0",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"workerpool": "^9.2.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@api3/airnode-abi": "^0.14.2",
"@api3/ois": "^2.3.2",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"hardhat": "^2.22.17",
"hardhat-deploy": "^0.14.0",
"husky": "^9.1.7",
"is-wsl": "^2.2.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}