-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 762 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 762 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
{
"name": "snapp",
"description": "snapp workspace",
"private": true,
"workspaces": [
"app",
"packages/*"
],
"scripts": {
"db:up": "turbo run db:up --filter=@snapp/db",
"db:down": "turbo run db:down --filter=@snapp/db",
"db:migrate": "turbo run db:migrate --filter=@snapp/db",
"build": "turbo build run",
"dev": "turbo build dev --filter=snapp-app --cwd=app",
"build:app": "turbo run build --filter=snapp-app",
"check": "turbo build check-types",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@10.15.0"
}