-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
82 lines (82 loc) · 2.7 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "yeger-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.4",
"description": "Monorepo for `@yeger` and related NPM packages",
"repository": {
"url": "https://github.com/DerYeger/yeger"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "nr turbo run build",
"bundlesize": "nr turbo run bundlesize",
"changeset": "changeset",
"ci": "cross-env COVERAGE=true nr turbo run build bundlesize generate lint lint:root test check:publish check:tsc check:vue",
"dev": "nr turbo run dev --parallel",
"fix": "nr turbo run lint lint:root -- --fix",
"codegen": "nr turbo run codegen",
"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": "nr turbo run lint lint:root",
"lint:root": "eslint \"{.changeset,.github,.husky,.vscode,turbo}/**/*.{astro,html,js,jsx,json,md,ts,tsx,vue,yaml,yml}\" \"./*.{astro,html,js,jsx,json,md,ts,tsx,vue,yaml,yml}\"",
"preview": "nr turbo run preview",
"syncpack": "syncpack",
"syncpack:fix": "syncpack fix-mismatches",
"syncpack:lint": "syncpack list-mismatches",
"test": "cross-env COVERAGE=true nr turbo run test",
"turbo": "cross-env CI=true FORCE_COLOR=1 turbo",
"typecheck": "nr turbo run check:tsc check:vue",
"update": "taze -l -r -w",
"vercel": "vercel",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"watch": "nr turbo watch"
},
"devDependencies": {
"@antfu/ni": "23.3.1",
"@changesets/cli": "2.27.12",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@turbo/gen": "2.4.0",
"@types/node": "22.13.0",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"@yeger/eslint-config": "workspace:*",
"@yeger/scripts": "workspace:*",
"@yeger/turbo-graph": "workspace:*",
"cross-env": "7.0.3",
"eslint": "9.19.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"publint": "0.3.2",
"rimraf": "6.0.1",
"syncpack": "13.0.0",
"taze": "18.3.0",
"turbo": "2.4.0",
"vercel": "39.4.2",
"vitest": "3.0.4"
},
"pnpm": {
"overrides": {
"@codemirror/state": "6.5.1"
},
"packageExtensions": {
"vue-template-compiler": {
"peerDependencies": {
"vue": "^2.7.14"
}
}
},
"patchedDependencies": {
"bundlesize2@0.0.32": "patches/bundlesize2@0.0.32.patch"
}
},
"lint-staged": {
"*.{astro,cjs,html,js,jsx,json,md,mjs,mts,svelte,ts,tsx,vue,yaml,yml}": "eslint --fix"
}
}