-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 KB
/
package.json
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
45
46
47
48
49
50
{
"name": "@lukebennett/root",
"private": true,
"description": "Personal website for Luke Bennett",
"repository": {
"type": "git",
"url": "https://github.com/lukebennett88/v3.lukebennett.dev"
},
"license": "MIT",
"author": {
"name": "Luke Bennett",
"email": "hello@lukebennett.com.au"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"build:web": "turbo run build --filter=web...",
"check": "turbo run check:format check:lint check:types",
"check:format": "turbo run check:format",
"check:lint": "turbo run check:lint",
"check:types": "turbo run check:types",
"clean": "pnpm run -r clean && rm -rf node_modules",
"clean:outputs": "pnpm run -r clean:outputs && rm -rf node_modules/.cache/",
"dev": "turbo run dev",
"dev:web": "turbo dev --filter=@lukebennett/web",
"fix": "turbo run fix:format fix:lint",
"fix:format": "turbo run fix:format",
"fix:lint": "turbo run fix:lint",
"format": "pnpm biome format --write",
"fresh": "pnpm run clean && pnpm install",
"preinstall": "npx only-allow pnpm",
"postinstall": "manypkg check",
"sort:packages": "npx sort-package-json 'package.json' './apps/*/package.json' './packages/*/package.json'"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@manypkg/cli": "^0.23.0",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"node": ">=22"
},
"manypkg": {
"defaultBranch": "main",
"workspaceProtocol": "require"
}
}