forked from InChordSync/Chordially
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 784 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 784 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
{
"name": "chordially",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"scripts": {
"bootstrap:local": "node scripts/bootstrap-local.mjs",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"build": "turbo run build",
"dev:api": "pnpm --filter @chordially/api dev",
"dev:web": "pnpm --filter @chordially/web dev",
"dev:mobile": "pnpm --filter @chordially/mobile dev",
"lint": "eslint .",
"repo:health": "node scripts/repo-health.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "turbo run test",
"dev": "turbo run dev --parallel"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"turbo": "^2.5.0",
"typescript": "^5.8.2"
}
}