-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "splitlock",
"version": "0.1.0",
"private": true,
"description": "Stellar/Soroban escrow split-payments dApp (contracts + frontend + backend)",
"license": "MIT",
"scripts": {
"test": "./scripts/test.sh",
"test:contracts": "cd contracts && cargo test",
"build:contract": "cd contracts && cargo build --target wasm32-unknown-unknown --release",
"dev:frontend": "cd frontend && npm run dev",
"build:frontend": "cd frontend && npm run build",
"backend:install": "cd backend && npm install",
"backend:migrate": "cd backend && npm run migrate",
"backend:index": "cd backend && npm run index",
"backend:start": "cd backend && npm start",
"deploy": "NETWORK=futurenet ./scripts/deploy.sh"
},
"workspaces": [
"frontend",
"backend"
]
}