-
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) · 924 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 924 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": "crackhouse",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"knip": "knip",
"test:e2e": "pnpm --filter web test:e2e",
"prepare": "lefthook install"
},
"devDependencies": {
"@evilmartians/lefthook": "^2.0.14",
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.6",
"@workspace/typescript-config": "workspace:*",
"dotenv-cli": "^11.0.0",
"knip": "^5.80.2",
"oxlint": "^1.49.0",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"turbo": "^2.7.4",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"glob": ">=10.5.0"
}
}
}