forked from denfrost/sample-diffusion-app
-
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) · 681 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 681 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"mock": "yarn workspace backend run mock",
"db-push": "yarn workspace @sampleforge/db run db-push ",
"studio": "npm workspace @sampleforge/db run studio ",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:web": "yarn workspace web dev",
"clean": "find . -name node_modules -o -name .next -o -name .expo -type d -prune | xargs rm -rf",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": "^16.13.0"
}
}