-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.94 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
{
"name": "ai-learning-assistant-training-server",
"version": "2.1.1",
"description": "AI Learning Assistant Training Server - Bun + Hono + Drizzle + PGlite",
"main": "dist/app.mjs",
"type": "module",
"scripts": {
"dev": "bun --watch src/app.ts",
"start": "bun dist/app.mjs",
"build": "bun tsdown",
"build:bun": "bun tsdown && bun build dist/app.mjs --compile --outfile backend",
"clean": "rimraf dist build",
"db:init": "bun src/scripts/initDB.ts",
"db:init:fullinit": "NODE_ENV=fullinit bun src/scripts/initDB.ts",
"db:import": "bun src/scripts/importSQL.ts",
"db:import:course": "bun src/scripts/importCourse.ts",
"db:seed": "bun src/scripts/seedFromAI.ts",
"db:generate:main": "DB_TARGET=main drizzle-kit generate",
"db:generate:user": "DB_TARGET=user drizzle-kit generate",
"db:generate": "bun run db:generate:main && bun run db:generate:user",
"db:studio:main": "DB_TARGET=main drizzle-kit studio",
"db:studio:user": "DB_TARGET=user drizzle-kit studio",
"typecheck": "tsc --noEmit",
"version:check": "bun run version-manager.ts check",
"version:check-remote": "bun run version-manager.ts check --remote",
"version:update": "bun run version-manager.ts update",
"version:deploy": "bun run version-manager.ts deploy",
"version:start": "bun run version-manager.ts start",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"prepare": "husky"
},
"dependencies": {
"@electric-sql/pglite": "0.3.15",
"@hono/node-server": "1.19.10",
"@hono/standard-validator": "0.2.2",
"@hono/swagger-ui": "0.6.0",
"@langchain/anthropic": "1.3.22",
"@langchain/community": "1.1.22",
"@langchain/core": "1.1.30",
"@langchain/deepseek": "1.0.16",
"@langchain/google-genai": "2.1.24",
"@langchain/langgraph": "1.2.0",
"@langchain/ollama": "1.2.6",
"@langchain/openai": "1.2.12",
"adm-zip": "0.5.16",
"commander": "14.0.3",
"consola": "3.4.2",
"dotenv": "17.3.1",
"drizzle-orm": "0.45.1",
"env-paths": "4.0.0",
"fastest-levenshtein": "1.0.16",
"hono": "4.12.5",
"hono-openapi": "1.3.0",
"lodash": "4.17.23",
"md5": "2.3.0",
"ofetch": "1.5.1",
"xmlbuilder2": "4.0.3",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/adm-zip": "0.5.7",
"@types/bun": "1.3.10",
"@types/lodash": "4.17.24",
"@types/md5": "2.3.6",
"@types/node": "25.3.3",
"drizzle-kit": "0.31.9",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"rimraf": "6.1.3",
"ts-deepmerge": "7.0.3",
"tsdown": "0.20.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"frontendDistGit": {
"url": "https://gitee.com/shiftonetothree/ai-learning-assistant-training-front-dist.git",
"branch": "master"
},
"lint-staged": {
"*.{ts,js,json}": "biome check --write --no-errors-on-unmatched"
}
}