-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (47 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "cipherpool",
"version": "1.0.0",
"description": "Encrypted Dark Pool Batch Auctions on Solana with Arcium",
"private": true,
"workspaces": [
"frontend",
"packages/*"
],
"scripts": {
"dev": "npm run frontend:dev",
"build": "npm run frontend:build",
"test": "npm run frontend:test",
"lint": "npm run frontend:lint",
"clean": "rm -rf node_modules frontend/node_modules frontend/.next chain/target backend/venv",
"anchor:build": "cd chain && anchor build",
"anchor:deploy": "cd chain && anchor deploy",
"anchor:test": "cd chain && anchor test",
"backend:dev": "cd backend && flask run",
"backend:install": "cd backend && python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt",
"frontend:dev": "cd frontend && npm run dev",
"frontend:build": "cd frontend && npm run build",
"frontend:test": "cd frontend && npm run test",
"frontend:lint": "cd frontend && npm run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"python": ">=3.11.0"
},
"keywords": [
"solana",
"arcium",
"encrypted-compute",
"dark-pool",
"mpc",
"defi",
"privacy"
],
"author": "CipherPool Team",
"license": "MIT"
}