-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 923 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 923 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
33
34
35
36
{
"name": "pangea-recipes",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0-or-later",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"db:deploy": "turbo run db:deploy",
"db:generate": "turbo run db:generate",
"db:migrate": "pnpm run -F=database db:migrate",
"db:nuke": "turbo run db:nuke",
"db:studio": "pnpm run -F=database db:studio",
"dev": "turbo run dev",
"dx": "turbo run dx",
"format": "oxfmt",
"format:check": "oxfmt --check",
"lint": "turbo run lint:eslint lint:type-check",
"preview-emails": "pnpm run -F=email preview",
"test": "turbo run test"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"oxfmt": "^0.36.0",
"turbo": "^2.8.14"
},
"engines": {
"node": "^24.11.0"
},
"packageManager": "pnpm@10.31.0"
}