forked from herraristotle/BookLore
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 959 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 959 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
25
26
27
28
{
"name": "booklite",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "npm run clean -ws --if-present",
"dev": "npm run dev -w @booklite/api",
"dev:split": "concurrently -n api,web -c cyan,magenta \"npm:dev -w @booklite/api\" \"npm:dev -w @booklite/web\"",
"build": "npm run build -w @booklite/shared && npm run build -w @booklite/api && npm run build -w @booklite/web",
"db:generate": "npm run db:generate -w @booklite/api",
"db:migrate": "npm run db:migrate -w @booklite/api",
"db:studio": "npm run db:studio -w @booklite/api",
"test": "npm run test -ws --if-present",
"typecheck": "npm run typecheck -ws --if-present",
"docker:up": "docker compose up -d --build",
"docker:down": "docker compose down",
"docker:dev": "docker compose -f compose.dev.yml up"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"engines": {
"node": ">=22"
}
}