-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.21 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.21 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
{
"name": "@line/abc-def",
"private": true,
"engines": {
"node": ">=24.13.0",
"pnpm": ">=10.28.0"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "turbo run build",
"build:storybook": "turbo run build:storybook && ./scripts/after-build-storybook.sh",
"clean": "git clean -xdf node_modules .turbo .cache",
"clean:workspaces": "turbo run clean",
"dev": "turbo watch dev --continue",
"dev:storybook": "turbo dev:storybook",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"release": "pnpm publish -r --access public"
},
"devDependencies": {
"@line/abc-def-prettier-config": "workspace:^",
"prettier": "catalog:",
"turbo": "^2.7.4",
"typescript": "catalog:"
},
"prettier": "@line/abc-def-prettier-config"
}