-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.22 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
{
"name": "dearpos",
"version": "0.1.0-alpha.0",
"private": false,
"license": "Apache-2.0",
"description": "Open-source point-of-sale for restaurants, cafés, and small shops. Self-hostable. No subscription. Stripe Terminal + Tap to Pay.",
"homepage": "https://dearpos.com",
"repository": {
"type": "git",
"url": "https://github.com/engindearing-projects/dearpos.git"
},
"bugs": {
"url": "https://github.com/engindearing-projects/dearpos/issues"
},
"author": "Engindearing <hi@engindearing.soy> (https://engindearing.soy)",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter './apps/web' dev",
"dev:terminal": "bun run --filter './apps/terminal' start",
"build": "bun run --filter '*' build",
"typecheck": "bun run --filter '*' typecheck",
"lint": "bun run --filter '*' lint",
"db:generate": "bun run --filter './packages/db' generate",
"db:push": "bun run --filter './packages/db' push",
"db:migrate": "bun run --filter './packages/db' migrate",
"db:seed": "bun run --filter './packages/db' seed",
"test:e2e": "bun run --filter './apps/web' test:e2e"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.11"
}