-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
21 lines (21 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ylockers-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"clean": "rm -R node_modules && rm -R packages/**/.next",
"dev:--lib": "cd packages/--lib && NEXT_TELEMETRY_DISABLED=1 next dev",
"build:--lib": "cd packages/--lib && next build",
"lint:--lib": "cd packages/--lib && NEXT_TELEMETRY_DISABLED=1 next lint",
"lint:fix:--lib": "cd packages/--lib && NEXT_TELEMETRY_DISABLED=1 next lint --fix",
"dev:prisma": "cd packages/prisma && NEXT_TELEMETRY_DISABLED=1 next dev",
"build:prisma": "cd packages/prisma && next build",
"lint:prisma": "cd packages/prisma && NEXT_TELEMETRY_DISABLED=1 next lint",
"lint:fix:prisma": "cd packages/prisma && NEXT_TELEMETRY_DISABLED=1 next lint --fix",
"dev:crv": "cd packages/crv && NEXT_TELEMETRY_DISABLED=1 next dev",
"build:crv": "cd packages/crv && next build",
"lint:crv": "cd packages/crv && NEXT_TELEMETRY_DISABLED=1 next lint",
"lint:fix:crv": "cd packages/crv && NEXT_TELEMETRY_DISABLED=1 next lint --fix"
}
}