generated from zenstackhq/v3-doc-orm-base
-
-
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.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 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": "quick-start",
"private": true,
"scripts": {
"generate": "zen generate",
"dev": "tsx find/basic.ts",
"create": "tsx create.ts",
"find:basic": "tsx find/basic.ts",
"find:sort": "tsx find/sort.ts",
"find:pagination": "tsx find/pagination.ts",
"find:selection": "tsx find/selection.ts",
"find:distinct": "tsx find/distinct.ts",
"filter:basic": "tsx filter/basic.ts",
"filter:relation": "tsx filter/relation.ts",
"filter:query-builder": "tsx filter/query-builder.ts",
"filter:json": "tsx filter/json.ts",
"aggregate": "tsx aggregate.ts",
"count": "tsx count.ts",
"group-by": "tsx group-by.ts",
"update:scalar": "tsx update/scalar.ts",
"update:relation": "tsx update/relation.ts",
"delete": "tsx delete.ts",
"query-builder": "tsx query-builder.ts",
"transaction": "tsx transaction.ts",
"query-api-hooks": "tsx plugins/query-api-hooks.ts",
"entity-mutation-hooks": "tsx plugins/entity-mutation-hooks",
"kysely-query-hooks": "tsx plugins/kysely-query-hooks",
"extend-orm-client": "tsx plugins/extend-orm-client.ts",
"slicing": "tsx slicing/slicing.ts",
"up": "npm i @zenstackhq/cli@latest @zenstackhq/orm@latest @zenstackhq/schema@latest"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/sql.js": "^1.4.9",
"@zenstackhq/cli": "^3.4.6",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@zenstackhq/orm": "^3.4.6",
"@zenstackhq/schema": "^3.4.6",
"kysely": "^0.28.8",
"sql.js": "^1.13.0",
"zod": "^4.3.6"
}
}