-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.42 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
{
"name": "hyperlane-cardano",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/tvl-labs/hyperlane-cardano",
"scripts": {
"build": "npx webpack build",
"test-integration": "npm run build && node dist/testIntegration.js",
"sendCardanoToKhalaniUsdcMessage": "npm run build && node dist/sendCardanoToKhalaniUsdcMessage.js",
"processPendingUsdcMintRequests": "npm run build && node dist/processPendingUsdcMintRequests.js",
"deployNewInbox": "npm run build && node dist/deployNewInbox.js",
"deployNewOutbox": "npm run build && node dist/deployNewOutbox.js",
"createValidatorKey": "npm run build && node dist/createValidatorKey.js",
"announceValidatorStorage": "npm run build && node dist/announceValidatorStorage.js --announcement-file $HOME/.local-hyperlane-checkpoints/0x70997970C51812dc3A010C7d01b50e0d17dc79C8/announcement.json",
"start-rpc-preprod": "yarn build && node dist/rpc.js",
"jest": "jest",
"lint": "npx eslint '**/*.{js,ts}'",
"format": "npx prettier '**/*.{js,ts}' --check --write",
"generate-rpc-server-types": "npx openapi-typescript openapi.yaml -o src/rpc/openapi.d.ts",
"generate-rpc-rust-client": "rm -rf generated-sources/ && openapi-generator-cli generate",
"publish-rpc-rust-client": "cd generated-sources/hyperlane-cardano-rpc-rust-client && cargo publish"
},
"dependencies": {
"@hyperionbt/helios": "https://github.com/kreate-community/Helios#5b3f0cd4dc7944f15fa64114a284927d5d800d16",
"bufferutil": "^4.0.7",
"cors": "^2.8.5",
"ethers": "^6.6.4",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.4",
"morgan": "^1.10.0",
"node-fetch": "^3.3.1",
"openapi-typescript": "^6.2.8",
"secp256k1": "^5.0.0",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@hyperionbt/helios-loader": "^0.1.5",
"@openapitools/openapi-generator-cli": "^2.6.0",
"@types/jest": "^29.1.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"dotenv": "^16.1.4",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
}
}