-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
40
41
42
43
44
45
46
47
{
"name": "ui",
"type": "module",
"private": true,
"version": "0.0.0",
"scripts": {
"bump": "taze -r -l",
"dev": "turbo dev",
"dev:storybook": "turbo run storybook",
"test": "turbo test",
"build": "turbo build",
"format": "biome check --linter-enabled=false --write",
"lint": "biome lint",
"lint:fix": "biome lint --write --unsafe",
"check:repo": "sherif",
"check:repo:fix": "sherif --fix",
"check:type": "turbo check:type",
"clean": "rimraf -g **/node_modules **/dist **/.turbo **/.astro",
"version": "changeset version && pnpm run format"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@turbo/gen": "^2.3.3",
"@types/node": "^20.17.10",
"dotenv": "^16.4.7",
"lint-staged": "^15.3.0",
"rimraf": "^6.0.1",
"sherif": "latest",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vite": "^6.0.6"
},
"packageManager": "[email protected]",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}