-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 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
34
35
36
{
"name": "privacy-proxy",
"version": "0.1.0",
"private": true,
"description": "ZK-powered private transaction protocol on Solana",
"workspaces": [
"app",
"circuits"
],
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspace tests test",
"test:anchor": "cd programs/privacy_proxy && anchor test",
"dev": "yarn workspace privacy-proxy-app dev",
"lint": "yarn workspaces run lint",
"circuits:compile": "cd circuits && ./scripts/compile.sh",
"circuits:setup": "cd circuits && ./scripts/setup.sh",
"relayer:start": "cargo run -p relayer",
"tor:start": "docker-compose -f crates/network/docker-compose.yml up -d",
"tor:stop": "docker-compose -f crates/network/docker-compose.yml down",
"gateway:start": "yarn workspace tor-gateway start",
"deploy:devnet": "./scripts/deploy-devnet.sh",
"deploy:mainnet": "./scripts/deploy-mainnet.sh"
},
"resolutions": {
"vite": "^6.0.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.3"
},
"engines": {
"node": ">=18.0.0"
}
}