-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 822 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 822 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
38
{
"name": "usedby.dev",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check-types": "turbo run check-types",
"test": "turbo run test",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxlint": "^1.43.0",
"prettier": "^3.7.4",
"turbo": "^2.8.3",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@11.10.0",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"*.{ts,tsx}": [
"oxlint --deny-warnings",
"prettier --write"
],
"*.{js,mjs,json,css,md}": "prettier --write"
}
}