-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "data-management-tool",
"type": "module",
"version": "1.0.6",
"keywords": [
"Data Management Tool",
"Typescript",
"Elysia",
"Bun",
"Prisma",
"Nobey Net"
],
"module": "src/index.ts",
"scripts": {
"dev": "bun --watch src/index.ts --target bun",
"build": "bun build src/index.ts --target bun",
"start": "NODE_ENV=production bun src/index.ts",
"test": "bun test",
"db:schema:pull": "prisma db pull && prisma generate",
"db:schema:push": "prisma db push",
"db:baseline": "prisma migrate diff",
"db:schema:generate": "prisma generate",
"db:migrate:resolve": "prisma migrate resolve",
"db:help": "bun run prisma --help",
"docs:dev": "vitepress dev docs --host",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "eslint src",
"lint:fix": "bun lint --fix",
"postinstall": "patch-package"
},
"prisma": {
"seed": "bun prisma/seed.ts --target bun"
},
"dependencies": {
"@adonisjs/env": "^6.1.1",
"@elysiajs/bearer": "^1.2.0",
"@elysiajs/cors": "^1.2.0",
"@elysiajs/html": "^1.2.0",
"@elysiajs/swagger": "^1.2.2",
"@kitajs/html": "^4.2.7",
"@kitajs/ts-html-plugin": "^4.1.1",
"@prisma/client": "^6.4.1",
"@prisma/migrate": "^6.4.1",
"elysia": "^1.2.25",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prisma": "^6.4.1",
"prisma-schema-dsl": "^2.2.0",
"react": "^19.0.0",
"react-dom": "^18.3.1",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"libpg-query",
"postinstall-postinstall",
"prisma",
"prisma-schema-dsl",
"vite",
"vue-demi"
],
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@eslint-react/eslint-plugin": "^1.31.0",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@stylistic/eslint-plugin-jsx": "^2.13.0",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"@ts-safeql/eslint-plugin": "^3.6.7",
"@types/bun": "^1.2.4",
"@types/react": "^18.3.18",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"bun-types": "^1.2.4",
"eslint": "^9.22.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"typedoc": "^0.27.9",
"typedoc-plugin-markdown": "^4.4.2",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typedoc-plugin-zod": "^1.4.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript-eslint": "^8.26.0",
"vitepress": "^1.6.3"
}
}