-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.23 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
{
"name": "yeger-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo for `@yeger` and related NPM packages",
"repository": {
"url": "https://github.com/DerYeger/yeger"
},
"type": "module",
"scripts": {
"build": "nr turbo run build",
"changeset": "changeset",
"changeset:publish": "changeset publish",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci": "nr build && COVERAGE=true nr turbo run publint typecheck e2e generate quality syncpack:lint test",
"codegen": "nr turbo run codegen",
"dev": "nr turbo run dev --parallel",
"e2e": "nr turbo run e2e",
"fix": "nr turbo run quality:fix",
"format": "oxfmt --check",
"format:fix": "oxfmt",
"generate": "nr turbo run generate",
"generate-readme": "nr turbo build --filter=@yeger/scripts... && generate-readme",
"graph": "nr turbo build --filter=@yeger/turbo-graph... && turbo-graph --open",
"install-hooks": "husky",
"lint": "oxlint",
"lint-staged": "lint-staged",
"lint:fix": "oxlint --fix",
"preview": "nr turbo run preview",
"syncpack:fix": "syncpack fix",
"syncpack:lint": "syncpack lint",
"test": "COVERAGE=true nr turbo run test",
"turbo": "CI=true FORCE_COLOR=1 turbo",
"typecheck": "nr turbo run typecheck",
"update": "taze -I",
"watch": "nr turbo watch"
},
"devDependencies": {
"@antfu/ni": "catalog:",
"@changesets/cli": "catalog:",
"@changesets/config": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@commitlint/types": "catalog:",
"@types/node": "catalog:",
"@yeger/scripts": "workspace:*",
"@yeger/turbo-graph": "workspace:*",
"husky": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"syncpack": "catalog:",
"taze": "catalog:",
"turbo": "2.10.4",
"vitest": "catalog:"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "pnpm@11.10.0+sha512.0b7f8b98060031904c017e3a41eb187a16d40eeb829b95c4f8cb03681761fc4ab53dd219115b9b447f4dce1a05a214764461e7d3703392a9f32f9511ce8c86c8"
}