-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "toolkit",
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"check-types": "turbo check-types",
"clean": "turbo clean",
"commit": "cz",
"dev": "turbo dev",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"prepare": "husky",
"publish-packages": "changeset publish",
"version-packages": "changeset version && pnpm format:fix"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@kickass-coderz/prettier-config": "workspace:*",
"commitizen": "^4.3.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": ">=20"
}
}