-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "create-t3-turbo",
"private": true,
"engines": {
"node": ">=20.18.1",
"pnpm": "^10.17.1"
},
"packageManager": "pnpm@10.17.1",
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*' --filter='!./packages/sdk'",
"build:all-packages": "turbo run build --filter='./packages/*'",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:push": "turbo -F @cared/db push",
"db:studio": "turbo -F @cared/db studio",
"dev": "turbo watch dev --continue",
"dev:web": "turbo watch dev -F @cared/web...",
"format": "turbo run format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo run format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo run lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"ui-add": "turbo run ui-add",
"prepare": "husky",
"publish-packages": "turbo run build lint && changeset version && changeset publish"
},
"devDependencies": {
"@cared/prettier-config": "workspace:*",
"@changesets/cli": "^2.28.1",
"@microsoft/api-extractor": "^7.53.0",
"@turbo/gen": "^2.5.6",
"husky": "^9.1.7",
"lint-staged": "^15.4.2",
"prettier": "catalog:",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"turbo": "^2.5.6",
"typescript": "catalog:"
},
"prettier": "@cared/prettier-config",
"pnpm": {
"overrides": {
"uuid": "13.0.0",
"minimatch": "10.0.3",
"pdfjs-dist": "4.7.76",
"pdfjs-dist>canvas": "npm:non-existent-package@0.0.0",
"@vercel/node>ts-node": "$ts-node",
"@vercel/node>typescript": "$typescript",
"@aws-sdk/client-s3": "3.901.0",
"@aws-sdk/s3-request-presigner": "3.901.0",
"@aws-sdk/signature-v4-multi-region": "3.901.0",
"@aws-sdk/xml-builder": "3.901.0"
},
"patchedDependencies": {
"@cloudflare/vite-plugin": "patches/@cloudflare__vite-plugin.patch",
"ansi-color": "patches/ansi-color.patch",
"vite-plugin-svgr": "patches/vite-plugin-svgr.patch",
"fumadocs-mdx": "patches/fumadocs-mdx.patch",
"tsup": "patches/tsup.patch",
"uuid": "patches/uuid.patch"
}
}
}