-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.21 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.21 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
{
"name": "draftly",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\" --names \"SERVER,CLIENT\" --prefix-colors \"blue,green\"",
"docker": "docker compose up --build",
"dev:client": "cd client && bun run dev",
"dev:server": "cd server && bun run dev",
"build:engine": "cd engine && wasm-pack build --target web",
"lint": "biome check . && cd engine && cargo clippy --all-targets --all-features -- -D warnings",
"lint:client": "cd client && bun run lint",
"lint:server": "cd server && bun run lint",
"lint:engine": "cd engine && cargo clippy --all-targets --all-features -- -D warnings",
"format": "biome format --write . && cd engine && cargo fmt",
"format:engine": "cd engine && cargo fmt",
"type-check": "cd client && bun run type-check && cd ../server && bun run type-check",
"check": "bun run lint && bun run type-check",
"test:engine": "cd engine && cargo test",
"clean": "rm -rf client/dist server/dist engine/target node_modules client/node_modules server/node_modules"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"concurrently": "^9.2.1"
}
}