-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.25 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": "presto",
"version": "1.24.0",
"description": "Self-hosted time-tracking app for freelancers and consultants. Generate monthly activity reports and export them as PDF.",
"keywords": [
"time-tracking",
"self-hosted",
"activity-report",
"freelancer",
"pdf-export",
"react",
"hono",
"drizzle",
"docker",
"typescript"
],
"homepage": "https://github.com/tux86/presto",
"repository": {
"type": "git",
"url": "https://github.com/tux86/presto.git"
},
"author": "tux86",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -k -n backend,frontend,studio -c blue,green,yellow \"bun run dev:backend\" \"bun run dev:frontend\" \"bun run db:studio\"",
"dev:backend": "bun run --filter '@presto/backend' dev",
"dev:frontend": "bun run --filter '@presto/frontend' dev",
"build": "bun run --filter '@presto/backend' build && bun run --filter '@presto/frontend' build",
"typecheck": "bun run --filter '@presto/shared' typecheck && bun run --filter '@presto/backend' typecheck && bun run --filter '@presto/frontend' typecheck",
"db:migrate": "bun run --filter '@presto/backend' db:migrate",
"db:reset": "bun run --filter '@presto/backend' db:reset",
"db:seed": "bun run --filter '@presto/backend' db:seed",
"db:generate": "bun run --filter '@presto/backend' db:generate",
"db:studio": "bun run --filter '@presto/backend' db:studio",
"test": "bun run --filter '@presto/backend' test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"concurrently": "^9.2.1",
"conventional-changelog-conventionalcommits": "^9.3.0",
"husky": "^9.1.7",
"semantic-release": "^25.0.3"
},
"dependencies": {
"hono": "^4.12.9"
}
}