-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 951 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 951 Bytes
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
{
"name": "bdwp-ts",
"version": "0.0.1",
"scripts": {
"dev": "monorepo-commander dev apps/backend,apps/frontend-vue",
"typecheck": "bun run --workspaces typecheck",
"preview": "monorepo-commander preview apps/backend,apps/frontend-vue",
"build": "bun run --workspaces build",
"drizzle": "bun run --cwd apps/backend drizzle-kit",
"seed": "bun run --cwd apps/backend seed",
"prepare": "husky",
"clean": "bunx rimraf --glob \"**/node_modules\" \"**/dist\" \"bun.lock\"",
"lint": "bun run --workspaces lint",
"lint:fix": "bun run --workspaces lint -- --fix"
},
"workspaces": [
"apps/*"
],
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@huan_kong/monorepo-commander": "^0.0.1",
"@types/bun": "^1.3.9",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"jiti": "^2.6.1"
},
"patchedDependencies": {
"pro-composables@3.3.3": "patches/pro-composables@3.3.3.patch"
}
}