-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.19 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.19 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
{
"name": "helix-staking",
"version": "0.1.0",
"scripts": {
"test": "anchor test",
"test:bankrun": "vitest run tests/bankrun",
"xray": "docker run --rm --volume \"$(pwd):/workspace\" ghcr.io/sec3-product/x-ray:latest /workspace/programs/helix-staking",
"localnet:up": "docker compose -f docker/docker-compose.yml up validator -d && docker compose -f docker/docker-compose.yml logs -f validator",
"localnet:up:all": "docker compose -f docker/docker-compose.yml up -d",
"localnet:down": "docker compose -f docker/docker-compose.yml down",
"localnet:logs": "docker compose -f docker/docker-compose.yml logs -f validator",
"localnet:status": "docker compose -f docker/docker-compose.yml ps"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@solana/web3.js": "^1.95.0"
},
"devDependencies": {
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@solana/spl-token": "^0.4.14",
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
"@vitest/ui": "^4.0.18",
"anchor-litesvm": "^0.2.1",
"chai": "^4.3.6",
"litesvm": "^0.6.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}