-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 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": "taskify",
"type": "module",
"private": true,
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean && rm -rf .turbo/",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"check-types": "turbo run check-types",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"db:generate": "turbo run db:generate",
"db:migrate:dev": "turbo run db:migrate:dev",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:seed": "turbo run db:seed"
},
"devDependencies": {
"@types/bun": "^1.3.2",
"prettier": "^3.6.2",
"turbo": "^2.5.6"
},
"packageManager": "bun@1.0.0",
"engines": {
"bun": ">=1.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
]
}