-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 830 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
{
"name": "react-invoice",
"version": "3.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"typecheck": "turbo typecheck",
"init-owner": "yarn workspace @workspace/db init-owner",
"db:generate": "yarn workspace @workspace/db db:generate",
"db:migrate": "yarn workspace @workspace/db db:migrate",
"db:studio": "yarn workspace @workspace/db db:studio"
},
"devDependencies": {
"@workspace/eslint-config": "*",
"@workspace/typescript-config": "*",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.9.18",
"typescript": "^5"
},
"packageManager": "yarn@4.17.1",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}