-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
16 lines (16 loc) · 962 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "delydelx",
"license": "Apache-2.0",
"version": "0.0.0",
"scripts": {
"move:init": "export $(cat .env | xargs) && aptos init --network=$VITE_APP_NETWORK --profile=$VITE_APP_NETWORK",
"move:compile": "export $(cat .env | xargs) && aptos move compile --package-dir move --skip-fetch-latest-git-deps --named-addresses module_addr=$(./scripts/get_module_addr.sh)",
"move:test": "export $(cat .env | xargs) && aptos move test --package-dir move --skip-fetch-latest-git-deps --named-addresses module_addr=$(./scripts/get_module_addr.sh)",
"move:publish": "export $(cat .env | xargs) && aptos move publish --package-dir move --skip-fetch-latest-git-deps --named-addresses module_addr=$(./scripts/get_module_addr.sh) --profile=$VITE_APP_NETWORK && ./scripts/gen_abi.sh",
"postinstall": "cd frontend && yarn install",
"start": "cd frontend && yarn run dev"
},
"devDependencies": {
"@aptos-labs/aptos-cli": "latest"
}
}