-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 942 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 942 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
{
"name": "pr-stack",
"license": "MIT",
"type": "module",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"dev:api": "turbo run dev --filter=api",
"build": "turbo run build",
"build:api": "turbo run build --filter=api",
"types:check": "turbo run types:check",
"test": "turbo run test",
"test:core": "turbo run test --filter=@pr-stack/core",
"lint:check": "turbo run lint:check",
"lint:fix": "turbo run lint:fix",
"prepare:lefthook": "lefthook install && bun -e \"const fs=require('node:fs'); fs.writeFileSync('node_modules/lefthook/bin/index.js', fs.readFileSync('node_modules/lefthook/bin/index.js', 'utf8').replace(/^#!\\/usr\\/bin\\/env\\s+node/gm, '#!\\/usr\\/bin\\/env bun'))\"",
"postinstall": "bun prepare:lefthook"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/bun": "latest",
"turbo": "^2.9.3"
},
"packageManager": "bun@1.3.9"
}