-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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",
"storybook": "turbo run storybook",
"build": "turbo build",
"lint": "turbo lint",
"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:unix": "turbo run clean && rm -rf node_modules",
"clean:win": "turbo run clean && rmdir /s /q node_modules",
"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",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"volta": {
"node": "20.12.1",
"pnpm": "8.15.6"
}
}