-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 KB
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": "decksmith",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0",
"turbo": "^2.8.19",
"typescript": "catalog:",
"vitest": "^4.1.0"
},
"packageManager": "pnpm@10.28.2",
"lint-staged": {
"*.{ts,tsx,js,jsx,md}": [
"oxfmt"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
]
}
}