-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 893 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 893 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
36
37
{
"private": true,
"engines": {
"node": ">=20 <25"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"prepare": "husky install",
"format": "prettier --write './apps/**/*.{ts,tsx}'"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@repo/eslint-config-custom": "workspace:*",
"@repo/ts-config": "workspace:*",
"eslint": "^9.33.0",
"husky": "^8.0.3",
"lint-staged": "16.2.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@9.9.0",
"pnpm": {
"overrides": {
"tar": "7.5.7"
}
},
"lint-staged": {
"*.rs": "rustfmt --edition 2021",
"**/*.{ts,tsx,js,jsx,json,md}": "prettier --write",
"*.py": "black",
"!**/*.hbs": "echo 'Skipping Handlebars template files'"
}
}