-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (23 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "predictx",
"version": "0.1.0",
"private": true,
"description": "Production-grade scaffold for PredictX, a Stellar Soroban prediction marketplace.",
"workspaces": [
"frontend"
],
"scripts": {
"build": "npm --workspace frontend run build",
"dev": "npm --workspace frontend run dev",
"format": "npm --workspace frontend run format",
"lint": "npm --workspace frontend run lint",
"test": "npm --workspace frontend run test",
"contracts:build": "cargo build --manifest-path contracts/Cargo.toml --target wasm32v1-none --release",
"contracts:test": "cargo test --manifest-path contracts/Cargo.toml",
"contracts:lint": "cargo clippy --workspace --all-targets -- -D warnings"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
}
}