-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.2 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
{
"name": "bricesuazo",
"version": "0.0.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo build --parallel",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"postinstall": "manypkg check",
"db:push": "pnpm -F db push",
"db:studio": "pnpm -F db studio",
"start": "turbo start",
"dev": "turbo dev --parallel",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg fix",
"typecheck": "turbo typecheck",
"ui": "pnpm --filter=ui ui"
},
"dependencies": {
"@bricesuazo/prettier-config": "workspace:*",
"@manypkg/cli": "^0.21.4",
"@turbo/gen": "^2.0.12",
"prettier": "^3.3.3",
"turbo": "^2.0.12",
"typescript": "^5.5.4"
},
"prettier": "@bricesuazo/prettier-config"
}