forked from ixahmedxi/orbitkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.06 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
{
"name": "orbitkit",
"version": "0.1.1",
"private": true,
"description": "A comprehensive, opinionated company monorepo boilerplate",
"license": "MIT",
"author": "OrbitKit",
"type": "module",
"scripts": {
"clean": "rimraf --glob **/node_modules **/dist **/.turbo **/.next **/.astro **/.eslintcache **/storybook-static pnpm-lock.yaml **/.tsbuildinfo",
"commit": "git-cz",
"format": "pnpm format:write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "eslint . --cache --max-warnings 0",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\"",
"lint:spell": "cspell \"**\"",
"prepare": "husky",
"release": "turbo run build lint typecheck && changeset version && changeset publish",
"reset:changelog": "rimraf --glob **/CHANGELOG.md",
"reset:versions": "pnpm recursive exec -- pnpm version 0.1.0",
"typecheck": "tsc --noEmit --tsBuildInfoFile .tsbuildinfo"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/config-pnpm-scopes": "^19.1.0",
"@commitlint/cz-commitlint": "^19.2.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@orbitkit/tsconfig": "workspace:^",
"@types/eslint": "^8.56.10",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cspell": "^8.7.0",
"eslint": "^8.57.0",
"eslint-config-orbitkit": "workspace:^",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.40.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-curly": "^0.2.1",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.5",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.12.2",
"pnpm": "9.0.4"
}
}