-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.35 KB
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
30
31
32
33
{
"name": "agenticpay",
"private": true,
"workspaces": [
"frontend",
"backend",
"packages/*",
"workers"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "turbo run dev",
"sandbox:up": "docker compose -f docker-compose.yml -f docker-compose.sandbox.yml up -d && npm run sandbox:seed",
"sandbox:down": "docker compose -f docker-compose.yml -f docker-compose.sandbox.yml down",
"sandbox:reset": "npm run sandbox:down && npm run sandbox:up",
"sandbox:logs": "docker compose -f docker-compose.yml -f docker-compose.sandbox.yml logs -f",
"sandbox:seed": "node scripts/sandbox/seed.js",
"sandbox:faucet": "node scripts/sandbox/faucet.js",
"dev:contracts": "bash scripts/dev/watch-contracts.sh",
"dev:contracts:evm": "bash scripts/dev/watch-contracts.sh --evm-only",
"dev:contracts:soroban": "bash scripts/dev/watch-contracts.sh --soroban-only",
"generate:api-hooks": "node packages/api-hooks-generator/dist/cli.js",
"generate:api-hooks:watch": "node packages/api-hooks-generator/dist/cli.js --watch",
"analyze:bundle": "bash scripts/analyze-bundle.sh",
"lighthouse:ci": "lhci autorun --config=./lighthouse/lighthouse.config.json",
"log-viewer": "node packages/log-viewer/dist/cli.js"
},
"devDependencies": {
"turbo": "^1.10.16"
}
}