-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --continue",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=docs^... && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "22.9.0",
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"hedwig-tsconfig": "workspace:*",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "^3.3.3",
"stylelint": "16.10.0",
"turbo": "2.2.3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"packages/css/**/*.{css,scss}": "stylelint --cache --fix",
"*.{js,jsx,ts,tsx,css,scss,md,json,html}": "prettier --cache --write"
},
"prettier": {
"printWidth": 100
},
"name": "hedwig-design-system"
}