-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.75 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
51
52
53
54
55
{
"name": "@lukebennett/root",
"private": true,
"description": "Personal website for Luke Bennett",
"repository": {
"type": "git",
"url": "https://github.com/lukebennett88/v3.lukebennett.com.au"
},
"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'"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@manypkg/cli": "0.22.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.8",
"turbo": "2.2.3"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"engines": {
"node": ">=18"
},
"volta": {
"node": "22.11.0"
},
"manypkg": {
"defaultBranch": "main",
"workspaceProtocol": "require"
}
}