-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 983 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "informeer",
"private": true,
"version": "0.1.11",
"description": "Informeer — self-hosted feed reader",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "concurrently -n api,frontend -c blue,green \"npm run dev:api\" \"npm run dev:frontend\"",
"dev:api": "cd api && bun run dev",
"dev:frontend": "cd frontend && npm run dev",
"hooks:install": "git config --local core.hooksPath .githooks && git config --local push.recurseSubmodules check && chmod +x .githooks/pre-push",
"build": "npm run build:frontend && npm run build:api",
"build:frontend": "cd frontend && npm run build",
"build:api": "cd api && bun run build",
"test": "cd api && bun test",
"typecheck": "cd frontend && npx tsc --noEmit && cd ../api && bun run typecheck",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}