-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 753 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
{
"name": "cash-pro",
"version": "0.2.0",
"private": true,
"description": "Cash Pro v2 - ERP migrable, offline-first (Web + Android)",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"db:generate": "pnpm --filter @cash-pro/db generate",
"db:migrate": "pnpm --filter @cash-pro/db migrate",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\""
},
"devDependencies": {
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"postcss@<8.5.10": ">=8.5.10"
}
}
}