-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.49 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.49 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
{
"name": "ogbank",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"contracts:build": "npm run build --workspace=packages/contracts",
"contracts:test": "npm run test --workspace=packages/contracts",
"contracts:test:unit": "npm run test:unit --workspace=packages/contracts",
"contracts:test:integration": "npm run test:integration --workspace=packages/contracts",
"contracts:lint": "npm run lint:check --workspace=packages/contracts",
"contracts:lint:fix": "npm run lint:fix --workspace=packages/contracts",
"contracts:coverage": "npm run coverage --workspace=packages/contracts",
"circuits:build": "cd packages/circuits && nargo compile",
"circuits:test": "cd packages/circuits && nargo test",
"circuits:check": "cd packages/circuits && nargo check",
"circuits:verifier": "bash packages/circuits/scripts/generate-verifier.sh",
"landing:dev": "npm run dev --workspace=apps/landing",
"landing:build": "npm run build --workspace=apps/landing",
"webapp:dev": "npm run dev --workspace=apps/webapp",
"webapp:build": "npm run build --workspace=apps/webapp",
"anvil:start": "anvil --code-size-limit 50000",
"dev": "concurrently -n webapp,relayer -c blue,green \"npm run webapp:dev\" \"cargo run --bin ogbank-relayer --manifest-path packages/zcash-integration/Cargo.toml\"",
"contracts:deploy:anvil": "npm run deploy:anvil --workspace=packages/contracts"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}