-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.25 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
{
"name": "templars-exchange",
"private": true,
"packageManager": "pnpm@11.7.0",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"typecheck": "pnpm --filter @templars/shared build && pnpm -r typecheck",
"contracts:build": "forge build --root contracts",
"contracts:test": "forge test --root contracts -vvv",
"rust:test": "cargo test --workspace --all-targets",
"arc:check": "node scripts/check-arc-rpc.mjs",
"gas:status": "node scripts/gas-status.mjs",
"oracle:publish": "node apps/relay-indexer/scripts/publish-testnet-oracle.mjs",
"oracle:supervised": "node scripts/oracle-supervisor.mjs",
"keeper": "node apps/relay-indexer/scripts/keeper.mjs",
"stack:start": "powershell -ExecutionPolicy Bypass -File scripts/start-stack.ps1",
"stack:stop": "powershell -ExecutionPolicy Bypass -File scripts/stop-stack.ps1",
"journal:backup": "powershell -ExecutionPolicy Bypass -File scripts/backup-journal.ps1",
"dev": "pnpm --parallel --filter @templars/relay-indexer --filter @templars/web dev",
"prepare": "lefthook install"
},
"devDependencies": {
"@openzeppelin/contracts": "5.6.1",
"lefthook": "^1.11.0",
"typescript": "5.9.3",
"viem": "2.54.6"
}
}