-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "turbo-monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:turbo": "pnpm run --filter=@turbo/cli build",
"build:ts": "tsc -b tsconfig.project.json",
"lint": "pnpm exec oxlint --deny-warnings .",
"lint:fix": "pnpm exec oxlint --fix .",
"format": "oxfmt --check",
"format:fix": "oxfmt .",
"check:toml": "taplo format --check",
"fix:toml": "taplo format",
"docs:dev": "turbo run dev --filter=./apps/docs",
"turbo": "pnpm run build:turbo && ./target/debug/turbo",
"turbo-prebuilt": "pnpm -- turbo",
"prepare": "husky install",
"test": "turbo run test",
"rustdoc": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going || true",
"rustdoc:open": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going --open",
"check": "ultracite check",
"fix": "ultracite fix"
},
"devDependencies": {
"@taplo/cli": "0.5.2",
"@types/node": "22.15.3",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"semver": "7.5.2",
"typescript": "5.5.4",
"ultracite": "7.2.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,mjs,yml,yaml,css,json,jsonc}": "oxfmt --no-error-on-unmatched-pattern",
"*.toml": "taplo format"
},
"engines": {
"node": "22.x"
},
"packageManager": "pnpm@10.28.0"
}