-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
98 lines (98 loc) · 3.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"name": "honghong-me",
"author": "tszhong0411 <me@honghong.me> (https://github.com/tszhong0411/)",
"repository": {
"type": "git",
"url": "git+https://github.com/tszhong0411/honghong.me.git"
},
"type": "module",
"scripts": {
"build": "turbo build",
"build:apps": "turbo build --filter=./apps/*",
"build:mdx": "turbo build:mdx",
"build:packages": "turbo build --filter=./packages/*",
"check": "turbo lint && turbo type-check && pnpm format:check && pnpm check:spelling && pnpm check:knip",
"check:knip": "cross-env VITE_CJS_IGNORE_WARNING=true dotenv -e .env.local -- knip",
"check:npm": "pnpm dlx npm-check-updates --deep --interactive --format group",
"check:spelling": "cspell --show-context --show-suggestions",
"clean": "turbo clean && rm -rf .turbo coverage",
"commit": "cz",
"db:check": "turbo db:check",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:push": "turbo db:push",
"db:seed": "turbo db:seed",
"db:studio": "turbo db:studio",
"dev": "turbo dev",
"dev:docs": "turbo dev --filter=@tszhong0411/docs",
"dev:packages": "turbo dev --filter=./packages/*",
"dev:web": "turbo dev --filter=@tszhong0411/web",
"format:check": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format:write": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore .",
"preinstall": "npx --yes only-allow pnpm",
"lint": "turbo lint && eslint . --max-warnings 0",
"lint:fix": "turbo lint:fix && eslint --fix . && pnpm format:write && tsx scripts/fix-cspell.ts",
"prepare": "husky && pnpm build:packages",
"release": "changeset publish",
"test:e2e": "turbo test:e2e",
"test:e2e:inspector": "turbo test:e2e:inspector",
"test:e2e:install": "playwright install",
"test:e2e:ui": "turbo test:e2e:ui",
"test:unit": "vitest run",
"test:unit:coverage": "vitest --coverage --ui",
"test:unit:ui": "vitest --ui",
"type-check": "turbo type-check",
"version": "changeset version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/dict-fullstack": "^3.2.3",
"@cspell/dict-npm": "^5.1.20",
"@cspell/dict-redis": "^1.0.4",
"@cspell/dict-software-terms": "^4.2.0",
"@playwright/test": "^1.49.1",
"@tszhong0411/eslint-config": "workspace:*",
"@tszhong0411/prettier-config": "workspace:*",
"@tszhong0411/tsconfig": "workspace:*",
"@turbo/gen": "^2.3.3",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/ui": "^3.0.2",
"commitizen": "^4.3.1",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"cspell": "^8.17.1",
"cz-git": "^1.11.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"knip": "^5.41.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-morph": "^24.0.0",
"tsup": "8.3.0",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "5.7.2",
"vitest": "^3.0.2"
},
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,json}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "pnpm@9.15.4"
}