-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "loreo",
"version": "0.1.0",
"private": true,
"description": "Self-hosted read-it-later app for saving and revisiting articles.",
"keywords": [
"articles",
"bookmarks",
"read-it-later",
"self-hosted"
],
"homepage": "https://github.com/technowizard/loreo#readme",
"bugs": {
"url": "https://github.com/technowizard/loreo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technowizard/loreo.git"
},
"scripts": {
"dev": "docker compose up",
"dev:local": "pnpm --parallel -r dev",
"dev:web": "pnpm --filter web dev",
"dev:server": "pnpm --filter server dev",
"build": "pnpm -r build",
"build:web": "pnpm --filter web build",
"build:server": "pnpm --filter server build",
"test": "pnpm -r test",
"test:web": "pnpm --filter web test",
"test:server": "pnpm --filter server test",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix && oxfmt --write",
"typecheck": "pnpm -r typecheck",
"db:push": "pnpm --filter server db:push",
"db:migrate": "pnpm --filter server db:migrate",
"db:studio": "pnpm --filter server db:studio",
"prepare": "husky",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@fdhl/oxlint-config": "catalog:",
"@loreo/config": "workspace:*",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsx": "^4.21.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "pnpm@10.28.0"
}