-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 948 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
29
30
31
32
33
{
"name": "tipoffwatch.com",
"version": "0.20.3",
"private": true,
"type": "module",
"description": "Sports calendar and reminder PWA. Follow any team in the world, get told before they play.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --hot apps/web/src/main.js",
"start": "bun apps/web/src/main.js",
"worker": "bun apps/worker/src/main.js",
"migrate": "bun packages/db/src/migrate-cli.js",
"sync": "bun apps/worker/src/sync-cli.js",
"test": "bun test",
"lint": "bun run --bun biome check .",
"icons": "bun install --cwd tools/icons && bun tools/icons/generate.js",
"format": "bun run --bun biome format --write ."
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.14",
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@electric-sql/pglite": "^0.5.5"
},
"dependencies": {
"@profullstack/multiview": "^0.1.0"
}
}