-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "pnpm --filter web test",
"test:watch": "pnpm --filter web test:watch",
"test:coverage": "pnpm --filter web test:coverage",
"test:e2e": "pnpm --filter web test:e2e",
"test:web": "pnpm --filter web test",
"test:web:e2e": "pnpm --filter web test:e2e",
"cli:build": "pnpm --filter mindpocket build",
"cli:pack": "cd apps/cli && npm pack --dry-run",
"cli:publish:dry-run": "cd apps/cli && npm publish --dry-run",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "ultracite check",
"fix": "ultracite fix",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"turbo": "^2.8.2",
"ultracite": "7.1.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": "biome check --write"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3",
"lightningcss": "1.30.1"
}
},
"name": "mindpocket-monorepo",
"packageManager": "pnpm@10.9.0"
}