-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 880 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 880 Bytes
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
{
"name": "setaday",
"private": true,
"scripts": {
"postinstall": "husky install",
"test": "turbo test",
"build": "turbo build",
"dev": "turbo dev",
"build:css": "turbo run build:css",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"format": "biome format --write .",
"lint": "biome lint ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "biome check --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.8",
"autoprefixer": "^10.4.20",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"turbo": "^2.0.12",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@9.7.0",
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}