-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.43 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
{
"name": "pg-sourcerer-monorepo",
"private": true,
"scripts": {
"prestart": "bun run --cwd packages/pg-sourcerer build",
"db:ensure": "bun run --cwd packages/example db:ensure",
"start": "bun --cwd packages/example start",
"generate": "bun run --cwd packages/example generate",
"test": "bun run --cwd packages/pg-sourcerer test",
"predev": "bun run db:ensure",
"dev": "mprocs 'bun run build:watch' 'bun run generate' 'bun run website'",
"website": "cd packages/website && bun start",
"build": "bun run --cwd packages/pg-sourcerer build",
"build:watch": "bun run --cwd packages/pg-sourcerer build:watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "bun --workspaces run typecheck"
},
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"@effect/cli": "^0.73.2",
"@effect/platform": "^0.94.5",
"@effect/platform-browser": "^0.74.0",
"@effect/platform-bun": "^0.87.1",
"@effect/platform-node": "^0.104.1",
"@effect/vitest": "^0.27.0",
"@types/bun": "^1.3.6",
"@types/pg": "^8.15.4",
"effect": "^3.19.19",
"pg": "^8.16.0",
"pg-introspection": "^1.0.0-rc.2",
"postgres": "^3.4.7",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
}
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"mprocs": "^0.8.3",
"typescript-eslint": "^8.54.0"
}
}