-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.81 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.81 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
{
"name": "zublo",
"version": "0.1.0",
"description": "Self-hosted subscription tracker built with React, PocketBase, and Docker.",
"private": true,
"packageManager": "bun@1.3.6",
"license": "Apache-2.0",
"author": {
"name": "Daniel Luiz Alves",
"url": "https://github.com/danielalves96"
},
"homepage": "https://github.com/danielalves96/zublo",
"bugs": {
"url": "https://github.com/danielalves96/zublo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielalves96/zublo.git"
},
"keywords": [
"budget",
"bun",
"docker",
"pocketbase",
"react",
"self-hosted",
"subscription-tracker",
"subscriptions"
],
"engines": {
"bun": ">=1.3.6"
},
"scripts": {
"dev": "concurrently -n web,pb -c blue,green \"bun run dev:web\" \"bun run dev:pb\"",
"dev:web": "cd apps/web && bun run dev",
"dev:pb": "cd apps/backend && ./pocketbase serve --http 127.0.0.1:8080 --hooksWatch=false",
"build": "cd apps/web && bun run build",
"lint": "cd apps/web && bun run lint",
"test": "bun run test:front && bun run test:back",
"test:run": "bun run test",
"test:coverage": "bun run test:front:coverage && bun run test:back:coverage",
"test:front": "cd apps/web && bun run test:run",
"test:front:coverage": "cd apps/web && bun run test:coverage; cp coverage/lcov.info lcov.info || true",
"test:back": "cd apps/backend && ../web/node_modules/.bin/vitest run --config vitest.config.mjs",
"test:back:coverage": "cd apps/backend && ../web/node_modules/.bin/vitest run --config vitest.config.mjs --coverage; cp coverage/lcov.info lcov.info || true",
"test:backend-hooks": "bun run test:back",
"test:backend-hooks:coverage": "bun run test:back:coverage"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}