generated from chainbound/rust-workspace-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 849 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "trustee-dex",
"version": "1.0.0",
"description": "Trustee DEX with frontend and backend integration",
"scripts": {
"dev": "concurrently \"PRIVATE_KEY=0x82441315fb3de0e7f27e54c62f653718e7be503a9f7c49a92905e99fb0d20f13 npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "RUST_LOG=debug cd crates/backend && cargo run",
"dev:frontend": "cd frontend && pnpm dev",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd crates/backend && cargo build --release",
"build:frontend": "cd frontend && pnpm build",
"install:all": "npm install && cd frontend && pnpm install",
"clean": "cd crates/backend && cargo clean && cd ../../frontend && rm -rf .next node_modules"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"workspaces": [
"frontend"
]
}