-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.43 KB
/
package.json
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
37
38
39
40
41
{
"name": "next-stuff",
"private": true,
"engines": {
"node": ">=20.16.0",
"pnpm": "^9.6.0"
},
"packageManager": "[email protected]",
"scripts": {
"add:ui": "pnpm dlx shadcn@latest add -c ./packages/ui",
"build": "turbo build",
"build:packages": "turbo build -F \"./packages/*\"",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"coverage": "turbo coverage",
"db:push": "pnpm -F prisma db:push",
"db:studio": "pnpm -F prisma dev",
"dev": "turbo dev --parallel",
"gen:action": "turbo gen next-action",
"gen:package": "turbo gen init",
"gen:story": "turbo gen story",
"gen:ui": "turbo gen component",
"format": "turbo format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"test": "turbo test",
"test:watch": "turbo test:watch",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@swy/prettier-config": "workspace:*",
"@turbo/gen": "^2.1.3",
"prettier": "catalog:",
"turbo": "^2.1.3",
"typescript": "catalog:"
},
"prettier": "@swy/prettier-config"
}