-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 770 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 770 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": "mindcache-monorepo",
"version": "3.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"test": "turbo test",
"typecheck": "turbo typecheck",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.3.0",
"typescript": "^5.0.0",
"zod": "^3.23.0"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": "eslint --fix"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0",
"jsondiffpatch": ">=0.7.2",
"next": ">=15.5.10"
}
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18.0.0"
}
}