-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.98 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
56
57
58
59
60
61
62
63
64
{
"name": "@portfolio/root",
"license": "MIT",
"private": true,
"packageManager": "[email protected]+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92",
"scripts": {
"build:chess": "turbo build --filter=@portfolio/chess",
"build:chess-v2": "turbo build --filter=@portfolio/chess-v2",
"build:chess-icons": "turbo build --filter=@portfolio/chess-icons",
"build:fs": "turbo build --filter=@portfolio/fs",
"build:targeted": "pnpm build:chess-icons && pnpm build:fs",
"build:web": "turbo build --filter=@portfolio/web",
"changeset": "changeset",
"clean": "git clean -xdf node_modules",
"dev": "turbo dev --parallel --continue",
"format": "prettier --write \"**/*.{ts,tsx,cts,mts,js,jsx,mjs,cjs,json,yaml,yml,css,html,md,mdx}\" --ignore-unknown --cache",
"lint": "turbo lint",
"prepare": "husky",
"typecheck": "turbo typecheck",
"clean:test": "git clean -xdf -e **/*{node_modules,.next,dist} && pnpm latest:pnpm",
"clean:house": "cd tooling/eslint && git clean -xdf node_modules .turbo && cd ../prettier && git clean -xdf node_modules .turbo && cd ../typescript && git clean -xdf .turbo node_modules && cd ../jest-presets && git clean -xdf node_modules .turbo && cd ../../apps/web && git clean -xdf .next node_modules && cd ../chess && git clean -xdf .next node_modules && cd ../chess-v2 && git clean -xdf .next node_modules && cd ../../packages/chess-icons && git clean -xdf dist node_modules && cd ../fs && git clean -xdf dist node_modules && cd ../.. && git clean -xdf node_modules pnpm-lock.yaml && pnpm install && pnpm build:targeted",
"generate:base64": "openssl rand -base64 64",
"generate:hex": "openssl rand -hex 64",
"npm:registry": "npm set registry https://registry.npmjs.org",
"run:chess": "turbo dev --filter=@portfolio/chess",
"run:chess-v2": "turbo dev --filter=@portfolio/chess-v2",
"run:web": "turbo dev --filter=@portfolio/web",
"sync:time": "sudo ntpdate time.windows.com",
"latest:pnpm": "corepack use pnpm@latest",
"update:pnpm": "curl -fsSL https://get.pnpm.io/install.sh | sh -"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@d0paminedriven/turbogen": "^0.6.0",
"@portfolio/eslint-config": "workspace:*",
"@portfolio/prettier-config": "workspace:*",
"@portfolio/tsconfig": "workspace:*",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.13.1",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"dotenv-expand": "^12.0.1",
"eslint": "latest",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"prettier": "latest",
"tsx": "latest",
"turbo": "latest",
"typescript": "latest",
"vercel": "latest"
},
"prettier": "@portfolio/prettier-config",
"engines": {
"node": ">=22",
"npm": ">=11",
"pnpm": ">=9"
},
"pnpm": {
"patchedDependencies": {
"rehype-pretty-code": "patches/rehype-pretty-code.patch"
}
}
}