generated from peacepiece7/design-system-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.37 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
{
"name": "turbo-design-system",
"private": true,
"scripts": {
"dev": "turbo dev",
"dev:blog": "turbo dev --filter @app/punk-record",
"storybook": "turbo run storybook",
"build": "turbo build --output-logs=full",
"lint": "turbo lint --output-logs=full",
"lint:packages:list": "syncpack list",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack list-mismatches",
"types:check": "turbo run types:check",
"test": "turbo test",
"clean": "turbo run clean",
"clean:bash": "turbo run clean && find ./ -path \"*/node_modules\" -type d -prune -exec rm -rf '{}' +",
"clean:cmd": "turbo run clean && for /d /r %d in (node_modules) do @if exist \"%d\" rd /s /q \"%d\"",
"prepare": "husky & node ./scripts/git_commit_convention.mjs & git config commit.template ./scripts/git_commit_template",
"format": "prettier --write \"**/*/app/**/*.{ts,tsx,md}\"",
"lint:format": "prettier --check \"**/*.{js,ts,tsx,md,mdx,json}\""
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.14",
"husky": "^9.1.4",
"prettier": "^3.3.3",
"syncpack": "^12.4.0",
"turbo": "^2.0.12"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"volta": {
"node": "20.12.1",
"pnpm": "8.15.6"
}
}