-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
42
43
44
45
46
47
48
49
50
{
"name": "flows-monorepo",
"private": true,
"sideEffects": false,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"app": "pnpm --filter app",
"docs": "pnpm --filter docs",
"web": "pnpm --filter web",
"ui": "pnpm --filter ui",
"icons": "pnpm --filter icons",
"be": "pnpm --filter backend",
"db": "pnpm --filter db",
"e2e": "pnpm --filter e2e",
"prepare": "husky || true",
"pre-push": "turbo lint tsc test spellcheck pre-commit lint:md",
"spellcheck": "pnpm cspell . --quiet",
"new-example": "pnpm dlx plop example",
"lint:md": "pnpm markdownlint '**/*.mdx' '**/*.md'",
"check-links": "pnpm dlx hyperlink http://localhost:3000/docs --recursive --internal --concurency 1"
},
"devDependencies": {
"cspell": "^8.17.3",
"eslint": "8.57.0",
"husky": "^9.1.7",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.4.2",
"tsconfig": "workspace:*",
"turbo": "^2.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@confluentinc/kafka-javascript",
"@nestjs/core",
"@scarf/scarf",
"@swc/core",
"bcrypt",
"contentlayer2",
"cypress",
"esbuild",
"protobufjs",
"sharp"
]
},
"packageManager": "pnpm@10.3.0"
}