-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.83 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
{
"name": "@avaprotocol/root",
"version": "1.2.1-dev.9",
"engines": {
"node": ">=20.18.0",
"yarn": ">=1.22.19"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"version": "changeset version",
"proto-download": "curl -s https://raw.githubusercontent.com/AvaProtocol/EigenLayer-AVS/main/protobuf/avs.proto > grpc_codegen/avs.proto",
"gen-protoc": "grpc_tools_node_protoc --js_out=import_style=commonjs,binary:./grpc_codegen/ --grpc_out=grpc_js:./grpc_codegen/ --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=grpc_js:./grpc_codegen --proto_path=./grpc_codegen grpc_codegen/avs.proto",
"gen-apikey": "sh -c 'API_KEY=$(docker compose exec aggregator /ava create-api-key --role=admin --subject=apikey) && echo \"Generated API key for tests: $API_KEY\" && echo \"Writing to .env.test to replace the TEST_API_KEY env variable\" && sed -i \"\" -e \"s/^TEST_API_KEY=.*/TEST_API_KEY=$API_KEY/\" .env.test && echo \"Done.\"'",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"test": "jest --config jest.config.cjs",
"test:select": "npm run test -- --testNamePattern"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.16.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"babel-jest": "^29.7.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"type": "commonjs"
}