-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 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
{
"name": "lvbt-basic-example",
"private": true,
"type": "module",
"scripts": {
"bootstrap": "lvbt bootstrap",
"preflight": "lvbt preflight",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e --concurrency=1",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm standards:check && pnpm format:check && markdownlint-cli2 && lvbt check && turbo run lint check-types test validate",
"check:fix": "pnpm format && markdownlint-cli2 --fix && turbo run lint -- --fix",
"prepare": "git config --local core.hooksPath .githooks 2>/dev/null || true",
"standards:update": "node .lvbt/web-platform/standards/web-platform-cli.ts update",
"standards:check": "node .lvbt/web-platform/standards/web-platform-cli.ts check"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@lasvegasfortransit/cli": "file:.lvbt/web-platform/packages/cli",
"@lasvegasfortransit/prettier-config": "file:.lvbt/web-platform/packages/prettier-config",
"lint-staged": "catalog:",
"markdownlint-cli2": "catalog:",
"markdownlint-rule-relative-links": "catalog:",
"prettier": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"packageManager": "pnpm@11.25.0",
"engines": {
"node": "^24.20.0"
}
}