-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "arbiq-freelance",
"version": "1.0.0",
"type": "module",
"description": "Arbiq — AI-enforced freelance escrow marketplace on GenLayer",
"private": true,
"workspaces": ["frontend"],
"scripts": {
"deploy": "genlayer deploy --contract contracts/arbiq.py",
"deploy:bradbury": "genlayer deploy --contract contracts/arbiq.py --rpc https://rpc-bradbury.genlayer.com",
"test": ".venv/bin/gltest test/test_arbiq.py -v",
"test:network": ".venv/bin/gltest",
"check": ".venv/bin/genvm-lint lint contracts/arbiq.py && .venv/bin/gltest test/test_arbiq.py -v",
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"install:frontend": "cd frontend && npm install"
},
"devDependencies": {
"genlayer-js": "^0.18.3",
"typescript": "^5.9.3"
}
}