-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "solana-aim",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"anchor:init": "docker-compose run --workdir=/build --rm solana anchor init",
"anchor:build": "docker-compose run --rm --workdir=/build/aim solana anchor build",
"anchor:deploy": "docker-compose exec --workdir=/build/aim solana anchor deploy",
"solana:keygen:new": "docker-compose exec solana solana-keygen new",
"solana:config:localnet": "docker-compose exec solana solana config set --url http://127.0.0.1:8899",
"solana:config:devnet": "docker-compose exec solana solana config set --url devnet",
"solana:pubkey": "docker-compose exec solana solana address -k /home/user/.config/solana/id.json",
"solana:airdrop": "docker-compose exec solana solana airdrop",
"app:build":"docker-compose run --rm web npm run generate"
},
"author": "",
"license": "ISC"
}