-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "drizzle-rest",
"version": "0.1.2-alpha.3",
"description": "A dynamic REST API adapter for Drizzle ORM with JSON-Server compatible query syntax",
"type": "module",
"private": true,
"scripts": {
"prepare": "lefthook install",
"build": "pnpm --filter @drizzle-rest/* build",
"test": "pnpm --filter @drizzle-rest/* test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"deps:graph": "depcruise --no-config --output-type mermaid --exclude 'node_modules|dist' packages > dependencies.mmd",
"deps:graph:core": "depcruise --no-config --output-type mermaid --exclude 'node_modules|dist' packages/core > dependencies-core.mmd",
"deps:graph:packages": "depcruise --no-config --output-type mermaid --exclude 'node_modules|dist' packages > dependencies-packages.mmd"
},
"author": "Marian Gaebler <marian.gaebler@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mgaebler/drizzle-rest.git"
},
"bugs": {
"url": "https://github.com/mgaebler/drizzle-rest/issues"
},
"homepage": "https://github.com/mgaebler/drizzle-rest#readme",
"engines": {
"node": ">=22"
},
"dependencies": {
"@electric-sql/pglite": "^0.3.4",
"drizzle-orm": "^0.44.2",
"drizzle-seed": "^0.3.1",
"drizzle-zod": "^0.5.1",
"pino": "^9.8.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@evilmartians/lefthook": "^2.1.0",
"@types/node": "^20.11.5",
"dependency-cruiser": "^17.0.0",
"drizzle-kit": "^0.31.4",
"jiti": "^2.4.2",
"pino-pretty": "^13.0.0",
"ts-unused-exports": "^11.0.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"workspaces": [
"packages/*",
"examples/*"
]
}