-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "datadive",
"version": "0.0.1",
"private": true,
"description": "A comprehensive, opinionated company monorepo boilerplate",
"license": "MIT",
"author": "Luca Schultz",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"packages/config/*"
],
"scripts": {
"ci:api": "bun turbo lint typecheck build --filter=...@datadive/api --force",
"ci:docs": "bun turbo lint typecheck build test:e2e --filter=...@datadive/docs --force",
"ci:web": "bun turbo lint typecheck build test:e2e --filter=...@datadive/web --force",
"cli": "bun run ./packages/db/dist/cli/bin.js",
"commit": "git-cz",
"dev": "turbo dev --filter=...@datadive/api --filter=...@datadive/web",
"diagram": "bun run diagram:generate && bun run diagram:build",
"diagram:build": "bun run ./scripts/build-diagram.ts",
"diagram:generate": "source thesis/.env.local && bun run erd-generator libsql -f -a $LANDLORD_DB_TOKEN -o ./thesis/img/diagrams/landlord-database-schema.d2 $LANDLORD_DB_URI && bun run erd-generator libsql -f -a $TENANT_DB_TOKEN -o ./thesis/img/diagrams/tenant-database-schema.d2 $TENANT_DB_URI",
"format": "bun format:write",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "eslint . --max-warnings 0",
"lint:md": "markdownlint \"**/*.md\" --dot",
"lint:spell": "cspell \"**\" --gitignore --dot --no-progress --cache --unique ",
"prepare": "husky && git config --local core.editor cat",
"release": "turbo run build lint typecheck && changeset version && changeset publish",
"reset:changelog": "bun run rm -rf */**/CHANGELOG.md",
"typecheck": "tsc",
"update:workspace": "bun run ./scripts/update-workspace"
},
"lint-staged": {
"*": [
"cspell --no-must-find-files",
"prettier --list-different"
],
"**/*.{ts,tsx,js,jsx,cjs,mjs}": [
"eslint"
],
"**/*.{md,mdx}": [
"markdownlint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@datadive/eslint": "workspace:^",
"@datadive/tsconfig": "workspace:^",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@lucaschultz/erd-generator": "^0.4.0",
"@playwright/test": "^1.45.1",
"@types/bun": "latest",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/yargs": "^17.0.32",
"commitizen": "^4.3.0",
"cspell": "^8.10.4",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"pkg-types": "^1.1.3",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-packagejson": "^2.5.0",
"turbo": "^2.0.6",
"typescript": "^5.5.3",
"yargs": "^17.7.2"
},
"packageManager": "bun@1.1.12",
"patchedDependencies": {
"@hono/zod-validator@0.2.2": "patches/@hono%2Fzod-validator@0.2.2.patch",
"@hono/zod-openapi@0.16.0": "patches/@hono%2Fzod-openapi@0.16.0.patch",
"@hono/zod-openapi@0.16.2": "patches/@hono%2Fzod-openapi@0.16.2.patch"
}
}