-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "librediary",
"version": "1.11.1",
"private": true,
"description": "Open-source, self-hosted, local-first workspace platform",
"license": "AGPL-3.0",
"author": {
"name": "Akaal Creatives",
"url": "https://www.akaalcreatives.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Akaal-Creatives/LibreDiary"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=@librediary/web",
"dev:server": "turbo run dev --filter=@librediary/server",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,vue,md,json,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,vue,md,json,yaml}\"",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"db:generate": "pnpm --filter @librediary/server db:generate",
"db:migrate": "pnpm --filter @librediary/server db:migrate",
"db:push": "pnpm --filter @librediary/server db:push",
"db:studio": "pnpm --filter @librediary/server db:studio",
"prepare": "husky",
"screenshots": "npx tsx scripts/screenshots.ts"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"husky": "^9.1.0",
"lint-staged": "^16.4.0",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"turbo": "^2.9.14"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
}
}