-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.51 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
{
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build-storybook": "turbo run build-storybook -- --output-dir=storybook-static",
"chromatic": "pnpm install && pnpm build --filter=docs^... && turbo run chromatic --",
"changeset": "changeset",
"version-packages": "changeset version",
"update-version": "changeset && changeset version",
"release": "turbo run build --filter=docs^... && changeset publish",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"sh scripts/typecheck-staged.sh",
"eslint --quiet --fix",
"prettier --write"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.9.0",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.1.2",
"@types/fs-extra": "^11.0.4",
"eslint": "^9.11.0",
"eslint-plugin-react": "^7.37.1",
"fs-extra": "^11.2.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"inquirer": "^11.0.2",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"turbo": "^2.1.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.1"
},
"resolutions": {
"cross-spawn": "7.0.5"
},
"packageManager": "[email protected]",
"name": "design-system"
}