-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 959 Bytes
/
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
{
"name": "gafi-market-demo",
"version": "0.0.1",
"description": "Gafi Market is a decentralized, transparent and flexible marketplace that offers various trading functions.",
"main": "index.js",
"scripts": {
"test": "cargo test",
"start": "RUST_LOG=debug cargo run -p backend",
"start-worker": "RUST_LOG=debug cargo run -p worker",
"build": "cargo build -p backend",
"build-worker": "cargo build -p worker",
"format": "cargo fmt",
"dev-be": "cargo watch -q -c -w backend/src/ -x 'run -p backend'",
"dev-worker": "cargo watch -q -c -w worker/src/ -x 'run -p worker'",
"db": "node mongodb-memory.js",
"generate:rpc": "subxt metadata -f bytes --url wss://ws-testnet.gafi.network:443/ > worker/metadata.scale "
},
"keywords": [
"gafi",
"gafi-market",
"marketplace",
"nft-gafi"
],
"author": "grindy",
"license": "MIT",
"dependencies": {
"mongodb-memory-server": "^8.14.0"
}
}