-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.96 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
{
"name": "@alanlu-dev/web-kit",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"description": "A monorepo build system and workflow for web projects.",
"author": "Alan Lu <[email protected]> (https://github.com/alanlu-zyl)",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:alanlu-dev/web-kit.git"
},
"bugs": {
"url": "https://github.com/alanlu-dev/web-kit/issues"
},
"engines": {
"node": ">=20.18.0",
"pnpm": ">=9.12.1",
"npm": "use pnpm please!",
"yarn": "use pnpm please!"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky && pnpm packages:prepare && pnpm apps:prepare",
"packages:prepare": "turbo run pkg:prepare",
"apps:prepare": "turbo run app:prepare",
"apps:cleanup": "turbo run cleanup",
"turbo:clean": "npx rimraf --glob ./**/.turbo",
"modules:clean": "npx rimraf --glob ./**/node_modules ./pnpm-lock.yaml",
"pnpm:clean": "pnpm store prune",
"build:clean": "turbo run build:clean --filter=./packages/**",
"build": "turbo run build",
"rebuild:all": "pnpm build:clean && turbo run build --force --no-cache",
"check": "turbo run test lint typecheck --parallel && pnpm lint:cspell",
"test": "turbo run test",
"e2e-test": "turbo run e2e-test",
"lint": "turbo run lint",
"lint:eslint": "turbo run lint:eslint",
"typecheck": "turbo run typecheck",
"lint:cspell": "pnpm cspell . --unique --no-progress --no-must-find-files",
"lint:cspell:only-changed": "git diff --name-only | npx cspell --file-list stdin",
"nuxt-demo": "pnpm --filter=@alanlu-dev/nuxt-demo",
"nuxt-demo:dev": "turbo run dev --filter=@alanlu-dev/nuxt-demo --filter=./packages/**",
"taze": "npx taze",
"change": "changeset",
"change:commit": "pnpm auto-changeset",
"update:version": "changeset version",
"publish": "pnpm release:only",
"release:only": "changeset publish",
"commit": "czg",
"commit:changeset": "czg :changeset"
},
"devDependencies": {
"@alanlu-dev/changeset": "workspace:*",
"@alanlu-dev/commitlint-config": "workspace:*",
"@alanlu-dev/eslint-config-flat": "workspace:*",
"@alanlu-dev/lint-staged-config": "workspace:*",
"@alanlu-dev/markdownlint-config": "workspace:*",
"@alanlu-dev/mastercss-config": "workspace:*",
"@alanlu-dev/playwright-config": "workspace:*",
"@alanlu-dev/prettier-config": "workspace:*",
"@alanlu-dev/stylelint-config": "workspace:*",
"@alanlu-dev/tsconfig": "workspace:*",
"@alanlu-dev/types": "workspace:*",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.3",
"cspell": "^8.15.2",
"dotenv": "^16.4.5",
"happy-dom": "^15.10.1",
"husky": "^9.1.6",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"unbuild": "^3.0.0-rc.11",
"vite": "^5.4.9",
"vitest": "^2.1.3"
}
}