-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.9 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.9 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@spautz/skip-the-build-workspace",
"private": true,
"description": "Speed up local dev by using local libraries without building them",
"license": "MIT",
"homepage": "https://github.com/spautz/skip-the-build#readme",
"bugs": "https://github.com/spautz/skip-the-build/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/spautz/skip-the-build.git"
},
"author": {
"name": "Steven Pautz",
"url": "https://stevenpautz.com"
},
"engines": {
"node": "^20 || ^22 || ^24 || ^25",
"pnpm": ">=10.30.0 <11"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"type": "module",
"scripts": {
"____ HOOKS _________________________________________________________": "",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"husky:precommit": "lint-staged",
"husky:prepush": "pnpm run format:verify && turbo run w:lint lint w:typecheck typecheck",
"____ BATCH OPERATIONS & STANDARD TASKS _____________________________": "",
"all": "pnpm run format && turbo run w:lint lint w:typecheck typecheck test build",
"all:all": "pnpm run format && turbo run w:lint lint w:typecheck typecheck w:all-tests test build pipeline-all",
"all:ci": "pnpm run format:verify && turbo run w:lint:verify w:typecheck w:all-tests:ci --ui=stream",
"dependencies": "turbo run dependencies",
"dev": "turbo run dev",
"lint": "turbo run w:lint lint",
"lint:verify": "turbo run w:lint:verify lint:verify",
"test": "turbo run test",
"test:ci": "turbo run w:all-tests:ci --ui=stream",
"test:ui": "turbo run w:all-tests:ui",
"test:watch": "turbo run w:all-tests:watch",
"typecheck": "turbo run w:typecheck typecheck",
"____ WORKSPACE-ONLY TASKS __________________________________________": "",
"changelog": "changeset",
"changelog:status": "changeset status --verbose",
"changelog:status:ci": "changeset status --since=origin/main --verbose",
"clean": "pnpm run w:all-tests:clean && rimraf --glob ./node_modules/.cache ./.turbo/{cache,runs,*.log} ./*.log && pnpm --parallel -r run clean",
"docs": "pnpm run --filter=./docs-website dev",
"format": "biome format --write .",
"format:verify": "biome format .",
"publish:yalc": "pnpm run -r publish:yalc",
"release:docs": "pnpm run --filter=./docs-website deploy",
"release:prep": "pnpm run changelog:status && changeset version",
"// COMMENT": "Scripts prefixed with 'w:' are the workspace-only versions of the standard tasks",
"w:all-tests:clean": "rimraf ./coverage",
"w:all-tests": "pnpm run w:all-tests:clean && vitest run --coverage",
"w:all-tests:ci": "pnpm run w:all-tests:clean && vitest run --coverage --bail 1",
"w:all-tests:ui": "pnpm run w:all-tests:clean && vitest --ui",
"w:all-tests:watch": "pnpm run w:all-tests:clean && vitest watch --coverage",
"w:lint": "biome check --write",
"w:lint:verify": "biome check",
"w:typecheck": "tsc -p ./tsconfig.json --noEmit",
"yalc:update": "pnpm run --filter skip-the-build publish:yalc && yalc add skip-the-build",
"____ PACKAGE-ONLY TASKS ____________________________________________": "",
"packages:all": "turbo run pipeline-all",
"packages:all:ci": "turbo run pipeline-ci --ui=stream",
"packages:build": "turbo run build",
"packages:lint": "turbo run lint",
"packages:lint:verify": "turbo run lint:verify",
"packages:test": "turbo run test",
"packages:test:ci": "turbo run test:ci --ui=stream",
"packages:test:ui": "turbo run test:ui",
"packages:test:watch": "turbo run test:watch",
"packages:typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@changesets/cli": "2.29.8",
"@testing-library/jest-dom": "catalog:",
"@testing-library/react": "catalog:",
"@vitejs/plugin-react": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"changesets-format-with-issue-links": "0.3.0",
"glob": "13.0.6",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lint-staged": "16.2.7",
"lodash": "4.18.1",
"only-allow": "1.2.2",
"rimraf": "6.1.3",
"skip-the-build": "next",
"tiny-immutable-set": "1.3.1",
"tsdown": "catalog:",
"turbo": "2.8.10",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"yalc": "1.0.0-pre.53",
"yargs": "18.0.0"
},
"pnpm": {
"COMMENT_pnpm_overrides_1": "This is a quick way to switch back and forth between different",
"COMMENT_pnpm_overrides_2": "versions of skip-the-build in local dev. (We don't use catalogs",
"COMMENT_pnpm_overrides_3": "because catalogs don't allow 'workspace:')",
"overrides_DISABLED": {
"skip-the-build": "next"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"biome check --write"
]
}
}