-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "orbitkit",
"private": true,
"description": "A comprehensive, opinionated company monorepo boilerplate",
"license": "MIT",
"author": "OrbitKit",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*"
],
"scripts": {
"commit": "git-cz",
"format": "bun format:write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "eslint . --max-warnings 0",
"lint:md": "markdownlint \"**/*.md\" --dot --ignore node_modules --ignore .changeset",
"lint:spell": "cspell \"**\" --gitignore --dot --no-progress --cache --unique ",
"prepare": "husky",
"release": "turbo run build lint typecheck && changeset version && changeset publish",
"reset:changelog": "bun run rm -rf */**/CHANGELOG.md",
"typecheck": "tsc",
"update:workspace": "bun run ./scripts/update-workspace"
},
"lint-staged": {
"*": [
"cspell --no-must-find-files",
"prettier --list-different"
],
"**/*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint"
],
"**/*.{md,mdx}": [
"markdownlint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/cz-commitlint": "^19.4.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@orbitkit/eslint": "workspace:^",
"@orbitkit/tsconfig": "workspace:^",
"@playwright/test": "^1.46.1",
"@types/bun": "latest",
"@types/eslint": "^9.6.1",
"@types/node": "^22.5.2",
"@types/yargs": "^17.0.33",
"commitizen": "^4.3.0",
"cspell": "^8.14.2",
"eslint": "^9.9.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"markdownlint": "^0.35.0",
"markdownlint-cli": "^0.41.0",
"pkg-types": "^1.2.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^2.5.2",
"turbo": "^2.1.1",
"typescript": "^5.5.4",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]"
}