-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ui",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"bump": "taze -r -l",
"stub": "turbo run stub",
"dev": "turbo watch dev",
"dev:storybook": "turbo run storybook",
"deploy": "turbo run deploy",
"test": "turbo test",
"build": "turbo build",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"sherif": "sherif --fix",
"typecheck": "turbo typecheck",
"clean": "turbo clean && git clean -xdf node_modules .turbo",
"version": "changeset version && pnpm run format"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"dotenv": "catalog:",
"lint-staged": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"rimraf": "catalog:",
"sharp": "^0.33.5",
"sherif": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"oxlint --fix",
"oxfmt"
]
},
"packageManager": "pnpm@10.15.0"
}