-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 739 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 739 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
{
"name": "daimo",
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.0.3",
"@daimo/tsconfig": "workspace:*",
"prettier": "^3.6.2",
"tsx": "^4.21.0",
"turbo": "^2.6.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"gen:types": "tsx scripts/generate-backend-python-types.ts --convex-dir packages/backend/ --out apps/live/src/convex_client.py",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo run typecheck"
},
"workspaces": [
"apps/*",
"packages/*"
]
}