-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 828 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 828 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
{
"name": "recto",
"version": "0.4.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "dotenv -- turbo run dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"prepare": "husky"
},
"packageManager": "pnpm@10.30.2",
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"dotenv-cli": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"biome check --write --no-errors-on-unmatched"
]
}
}