-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "wraft-monorepo",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"clean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && turbo run clean",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint:fix": "turbo run lint:fix",
"lint": "turbo run lint",
"post-install": "husky install && turbo run post-install",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prettier": "prettier --check .",
"release": "turbo run build --filter=docs^... && changeset publish",
"version-packages": "changeset version"
},
"lint-staged": {
"(apps|packages)/**/*.{ts,tsx,md}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@wraft/eslint-config": "*",
"@wraft/typescript-config": "*",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "latest"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0",
"npm": "not supported"
}
}