-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "coasterrank",
"private": true,
"version": "0.0.0",
"description": "Meta-package: convenience runners for the app/, scripts/, and packages/bt/ sub-packages. No workspaces — each sub-package keeps its own dependencies and lockfile.",
"scripts": {
"install:all": "npm --prefix app install && npm --prefix scripts install && npm --prefix packages/bt install",
"dev": "npm --prefix app run dev",
"build": "npm --prefix app run build",
"typecheck": "npm --prefix app run typecheck",
"lint": "npm --prefix app run lint",
"test": "npm --prefix app run test:run",
"format": "npm --prefix app run format",
"format:check": "npm --prefix app run format:check",
"gates": "npm --prefix app run typecheck && npm --prefix app run lint && npm --prefix app run test:run && npm --prefix app run format:check",
"gates:all": "npm run gates && npm --prefix scripts run typecheck && npm --prefix packages/bt run typecheck && npm --prefix packages/bt test"
}
}