-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.11 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
{
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "bun rome format apps packages --write",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"prepare": "husky install",
"r": "pnpm --filter @mtgpm/renderer",
"u": "pnpm --filter @mtgpm/utils",
"t": "pnpm --filter @mtgpm/templates"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"c8": "^7.12.0",
"happy-dom": "^7.7.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"rome": "^10.0.1",
"turbo": "^1.6.3",
"typescript": "^4.8.4",
"vitest": "^0.25.1"
},
"lint-staged": {
"*.{ts,tsx,md}": [
"bun rome check --apply-suggested",
"bun rome format --write"
]
},
"packageManager": "pnpm@7.15.0"
}