-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.55 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
{
"name": "share-note-web",
"version": "0.0.0",
"private": true,
"description": "Share an Obsidian note as a public link.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.22.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"dev:up": "docker compose up -d --wait postgres redis minio && docker compose run --rm minio-init && docker compose run --rm migrate",
"dev:down": "docker compose down",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"verify": "turbo run lint typecheck test build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync-plugin-manifest": "node scripts/sync-plugin-manifest.mjs",
"changeset": "changeset",
"version-packages": "changeset version && pnpm sync-plugin-manifest && pnpm install --lockfile-only",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "3.0.3",
"@commitlint/cli": "21.2.3",
"@commitlint/config-conventional": "21.2.3",
"@eslint/js": "9.39.5",
"@share-note/config": "workspace:*",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"globals": "catalog:",
"husky": "9.1.7",
"lint-staged": "17.5.1",
"prettier": "catalog:",
"turbo": "2.11.2",
"typescript": "catalog:"
},
"lint-staged": {
"*.{ts,tsx,mts,cts,js,jsx,mjs,cjs}": [
"prettier --write",
"eslint --max-warnings=0 --no-warn-ignored"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
}
}