-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.31 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
{
"name": "stakefetch",
"description": "Fetch stake and balance of NEAR accounts",
"version": "0.0.1",
"license": "(MIT AND Apache-2.0)",
"type": "module",
"scripts": {
"build": "cargo build --target wasm32-unknown-unknown --release",
"test": "cargo test --release -- --nocapture && cd relayer && npm run test",
"lint": "cargo fmt --all -- --check && cargo clippy --release -- -D warnings",
"cook": "npm run cookSnapshotContract && npm run cookSecret && npm run cookVoting && npm run cookRelayer",
"cookSnapshotContract": "cd contracts/voting_snapshot && cargo near build",
"cookSecret": "cd contracts/secret_contract && make build-mainnet",
"cookVoting": "cd contracts/voting_contract && cargo near build",
"cookRelayer": "cd relayer && npm i"
},
"dependencies": {
"@supercharge/promise-pool": "^2.3.2",
"big.js": "^6.1.1",
"bn-sqrt": "^1.0.0",
"commander": "^12.0.0",
"dotenv": "^16.3.1",
"fs": "^0.0.1security",
"near-api-js": "^3.0.4",
"p-retry": "^6.2.0",
"pg": "^8.11.3",
"secp256k1": "^5.0.0",
"secretjs": "^1.12.0",
"wasm-opt": "^1.4.0"
},
"devDependencies": {
"cargo-near": "^0.6.1",
"near-cli-rs": "^0.8.1"
}
}