-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 4.47 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
114
115
116
117
{
"name": "mokup-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"author": "ice breaker <hi@sonofmagic.top>",
"homepage": "https://mokup.icebreaker.top",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/mokup.git"
},
"bugs": {
"url": "https://github.com/sonofmagic/mokup/issues"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"build:apps": "turbo run build --filter=./apps/*...",
"dev": "turbo run dev --parallel",
"docs:build": "pnpm --filter mokup-docs build",
"docs:deploy": "pnpm --filter mokup-docs worker:deploy",
"test": "vitest run",
"test:dev": "vitest",
"test:types": "pnpm -r --filter \"./packages/*\" --filter \"!./packages/playground\" run test:types",
"typecheck:fast": "pnpm -r --if-present --workspace-concurrency=8 run typecheck",
"typecheck:root": "tsc -p tsconfig.root.json --noEmit",
"guard:migration": "node scripts/check-migration-guards.mjs",
"release:pack-check": "node scripts/check-pack-artifacts.mjs",
"lint": "turbo run lint",
"lint:lines": "node scripts/lint-lines.mjs",
"lint:lines:warn": "node scripts/lint-lines.mjs --mode=warn",
"lint:lines:guard": "node scripts/lint-lines.mjs --mode=guard",
"audit": "pnpm audit --audit-level=moderate",
"audit:fix": "pnpm audit --fix",
"typecheck": "pnpm run typecheck:root && turbo run typecheck",
"format": "eslint . --fix",
"validate:fast": "pnpm run guard:migration && pnpm run typecheck:fast && pnpm run lint:lines:guard",
"validate": "pnpm run guard:migration && pnpm run typecheck && pnpm run lint && pnpm run test",
"test:e2e": "pnpm run test:e2e:root && pnpm run test:e2e:apps",
"test:e2e:root": "playwright test",
"test:e2e:apps": "turbo run test:e2e --filter=./apps/* --concurrency=${E2E_CONCURRENCY:-3}",
"test:e2e:serial": "pnpm run test:e2e:root -- --workers=1 && pnpm run test:e2e:apps:serial",
"test:e2e:apps:serial": "turbo run test:e2e --filter=./apps/* --concurrency=1",
"test:e2e:ui": "pnpm run test:e2e:root -- --ui && pnpm run test:e2e:apps:ui",
"test:e2e:apps:ui": "turbo run test:e2e --filter=./apps/* --concurrency=${E2E_CONCURRENCY:-3} -- --ui",
"release": "changeset",
"release:check": "pnpm run guard:migration && pnpm run typecheck && turbo run build lint test && pnpm run test:types && pnpm run test:e2e && pnpm run release:pack-check",
"publish-packages": "pnpm run release:check && changeset version && changeset publish",
"------": "--------------",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"commit": "commit",
"commitlint": "commitlint --edit",
"-------": "---------------",
"pr:alpha": "changeset pre enter alpha",
"pr:beta": "changeset pre enter beta",
"pr:rc": "changeset pre enter rc",
"pr:exit": "changeset pre exit",
"--------": "----------------",
"script:init": "monorepo init",
"script:sync": "monorepo sync",
"script:clean": "monorepo clean",
"script:mirror": "monorepo mirror"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@icebreakers/changelog-github": "^1.0.0",
"@icebreakers/commitlint-config": "^2.0.0",
"@icebreakers/eslint-config": "^4.0.1",
"@icebreakers/monorepo": "latest",
"@icebreakers/stylelint-config": "^3.0.1",
"@mokup/shared": "workspace:*",
"@playwright/test": "^1.59.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "catalog:",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "~4.1.3",
"ci-info": "^4.4.0",
"cross-env": "^10.1.0",
"defu": "^6.1.7",
"es-toolkit": "^1.45.1",
"eslint": "^10.2.0",
"execa": "^9.6.1",
"fs-extra": "^11.3.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"only-allow": "^1.2.2",
"pathe": "catalog:",
"pkg-types": "^2.3.0",
"rimraf": "^6.1.3",
"stylelint": "^17.6.0",
"tsd": "^0.33.0",
"tsdown": "0.21.7",
"tslib": "^2.8.1",
"tsx": "catalog:",
"turbo": "^2.9.4",
"type-fest": "^5.5.0",
"typescript": "catalog:",
"vitest": "~4.1.3",
"yaml": "^2.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"esbuild": "0.27.7",
"rolldown": "1.0.0-rc.13"
}
}
}