-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 674 Bytes
/
Copy pathpackage.json
File metadata and controls
15 lines (15 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "proxer-workspace",
"private": true,
"scripts": {
"dev": "npm --prefix frontend exec tauri -- dev",
"build": "npm --prefix frontend exec tauri -- build --ci",
"build:no-bundle": "npm --prefix frontend exec tauri -- build --ci --no-bundle",
"tauri": "npm --prefix frontend exec tauri --",
"frontend:dev": "npm --prefix frontend run dev",
"frontend:build": "npm --prefix frontend run build",
"frontend:typecheck": "npm --prefix frontend exec -- tsc -p frontend/tsconfig.json --noEmit",
"backend:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"check": "npm run frontend:typecheck && npm run backend:check"
}
}