-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 986 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 986 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
31
32
33
34
{
"name": "@codemix/graph-monorepo",
"version": "1.0.0",
"private": true,
"description": "The codemix graph database monorepo",
"keywords": [],
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm run -r build",
"changeset": "changeset",
"prepare": "sh ./scripts/setup-git-hooks.sh",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"setup:hooks": "sh ./scripts/setup-git-hooks.sh",
"typecheck": "pnpm run -r typecheck",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "oxlint --ignore-pattern '**/grammar.js' .",
"lint:fix": "pnpm run lint --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check ."
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@vitest/coverage-istanbul": "catalog:",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"typescript": "catalog:",
"vitest": "catalog:"
}
}