-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "verbnb",
"version": "1.0.0",
"private": true,
"description": "Verdix / VerBnb - Universal AI-Enforced Marketplace Dispute Resolution on GenLayer",
"workspaces": [
"frontend"
],
"overrides": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0"
},
"scripts": {
"dev": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=frontend",
"start": "npm run start --workspace=frontend",
"lint": "npm run lint --workspace=frontend",
"install:frontend": "npm install --workspace=frontend",
"contracts:lint": "for f in contracts/*.py; do .venv/bin/genvm-lint check \"$f\" --json || exit 1; done",
"test:direct": ".venv/bin/python -m pytest tests/direct/ -v",
"test:integration": ".venv/bin/gltest tests/integration/ -v -s --network studionet",
"deploy": ".venv/bin/python tools/deploy.py --network studionet"
}
}