package.json (566B)
1 { 2 "name": "market", 3 "private": true, 4 "license": "AGPLv3", 5 "scripts": { 6 "build": "turbo build", 7 "build:app": "turbo build --filter=app --filter=@radroots/*", 8 "dev:lib": "turbo dev --filter=@radroots/* --concurrency 16", 9 "dev:app": "cd app && yarn dev" 10 }, 11 "devDependencies": { 12 "turbo": "2.5.3", 13 "typescript": "^5.8.3" 14 }, 15 "engines": { 16 "node": ">=18" 17 }, 18 "workspaces": { 19 "packages": [ 20 "app", 21 "../packages/*", 22 "../crates/*/bindings/ts" 23 ], 24 "nohoist": [] 25 }, 26 "packageManager": "yarn@1.22.22" 27 }