-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.02 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.02 KB
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
{
"private": true,
"workspaces": [
"apps/web",
"apps/admin",
"packages/*"
],
"scripts": {
"admin:echo": "(cd apps/admin/ && make echo)",
"admin:dev": "yarn workspace admin dev",
"admin:build": "yarn workspace @next-admin/db generate && yarn workspace admin build",
"admin:start": "yarn workspace admin start",
"db:deploy": "yarn workspace @next-admin/db deploy",
"db:generate": "yarn workspace @next-admin/db generate",
"db:studio": "yarn workspace @next-admin/db studio",
"ncu": "yarn workspace admin ncu && yarn workspace @next-admin/db ncu",
"clean": "find . -name 'node_modules' -type d -prune | awk '{print \"rm -rf\", $0}' | sh",
"ncuu": "yarn workspaces foreach -A run ncuu",
"ncum": "yarn workspace admin ncum && yarn workspace @next-admin/db ncum",
"ncumu": "yarn workspaces foreach -A run ncumu"
},
"resolutions": {
"typescript-eslint": "8.56.1"
},
"engines": {
"npm": "use yarn instead",
"yarn": "4.12.0"
},
"packageManager": "yarn@4.12.0"
}