-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.58 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
{
"name": "codefix",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
"dev": "turbo run dev",
"dev:packages": "turbo run dev --filter='./packages/*'",
"force:build": "turbo run clean && turbo run build --force",
"postinstall": "pnpm exec simple-git-hooks",
"lint": "turbo run lint",
"pnpm:install": "pnpm install",
"pnpm:reinstall": "pnpm run clean && pnpm install",
"pnpm:update": "pnpm update --latest --interactive --recursive",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"release": "turbo run build --filter=docs^... && changeset publish",
"start": "turbo run start --force",
"storybook": "turbo run storybook",
"version-packages": "changeset version"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson",
"prettier-plugin-tailwindcss"
],
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@codefixlabs/tsconfig": "workspace:*",
"eslint": "^8.57.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.0",
"simple-git-hooks": "^2.11.1",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}