-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 897 Bytes
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
30
{
"version": "0.1.0",
"description": "service-template",
"type": "module",
"devDependencies": {
"eslint-plugin-devup": "^2.1.0",
"oxlint": "1.80",
"husky": "^9.1",
"bun-test-env-dom": "^1.0",
"@devup-ui/bun-plugin": "^1.0",
"@types/bun": "^1.4"
},
"workspaces": [
"apps/*"
],
"scripts": {
"prelint": "cargo clippy -- -D warnings && cargo fmt --check && cargo check",
"build": "bun run -F ./apps/front build && bun run -F ./apps/admin build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prelint:fix": "cargo clippy --fix --allow-dirty && cargo fmt && cargo check",
"test": "bun test",
"posttest": "cargo tarpaulin --out xml --out stdout --out html --all-targets",
"dev": "bun run --workspaces dev",
"api": "cargo run",
"prepare": "husky",
"changepacks": "bunx @changepacks/cli"
},
"author": "devfive"
}