-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"private": true,
"contributors": [
{
"name": "Carlos Ziegler",
"url": "https://github.com/carlosziegler"
},
{
"name": "Khiet Tam Nguyen",
"url": "https://github.com/nktnet1"
}
],
"license": "MIT",
"type": "module",
"scripts": {
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"dev": "turbo watch dev --continue",
"db:push": "turbo -F @repo/db push",
"db:studio": "turbo -F @repo/db studio",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"clean": "turbo run clean",
"postclean": "git clean -xdf .cache .turbo node_modules",
"ui-add": "turbo run ui-add -F @repo/ui --",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"copy-example-dotenv": "turbo run copy-example-dotenv"
},
"prettier": "@repo/prettier-config",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@repo/prettier-config": "workspace:*",
"prettier": "catalog:",
"turbo": "catalog:"
},
"packageManager": "pnpm@10.4.0",
"engines": {
"node": ">=22.10.0",
"pnpm": "^10.4.0"
},
"pnpm": {
"neverBuiltDependencies": [],
"overrides": {
"esbuild": "^0.25.0",
"cookie": "^0.7.0"
}
}
}