-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 810 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
{
"name": "redi",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "turbo run format",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"prepare": "husky",
"lint:staged": "lint-staged"
},
"devDependencies": {
"eslint": "^9.10.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.3.3",
"turbo": "^2.1.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}