主要完成: 补齐招生学校计划、投档审核、报到、扫码、补录等原生接口。 新增 SQLite/MySQL 空库初始化及默认审批流、号码规则。 删除 Node 兼容代理,未知 API 直接返回原生 404。 Docker、Compose、Gitea CI 全部切换到 Eis.Web.dll。 CKEditor 已固化到 Web 发布资源,不再依赖 node_modules。 新增纯 .NET 冒烟脚本:[smoke-dotnet-native.ps1 (line 1)](C:/Users/BI/Documents/EIS-dotnet/scripts/smoke-dotnet-native.ps1:1)。 迁移状态已更新:[MIGRATION.md (line 14)](C:/Users/BI/Documents/EIS-dotnet/MIGRATION.md:14)。 容器入口见 [Dockerfile (line 31)](C:/Users/BI/Documents/EIS-dotnet/Dockerfile:31)。
36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"name": "hengzhun-exam-system",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "dotnet run --project src/Eis.Web/Eis.Web.csproj",
|
|
"test": "dotnet test Eis.slnx",
|
|
"test:legacy": "node tests/client-auth.test.mjs && node tests/api-dedup.test.mjs && node tests/cache.test.mjs && node tests/auth-state.test.mjs && node tests/state-cache.test.mjs && node tests/document-verification.test.mjs && node tests/admission.test.mjs && node tests/seed.test.mjs && node tests/system.test.mjs",
|
|
"test:cache": "node tests/cache.test.mjs",
|
|
"reset-db": "node scripts/reset-dev-database.mjs",
|
|
"seed-test-data": "node scripts/import-test-data.mjs",
|
|
"seed-test-data:sqlite": "node scripts/import-test-data.mjs --sqlite",
|
|
"seed-test-data:mysql": "node scripts/import-test-data.mjs --mysql",
|
|
"initialize-system": "node scripts/import-test-data.mjs --empty",
|
|
"initialize-system:sqlite": "node scripts/import-test-data.mjs --empty --sqlite",
|
|
"initialize-system:mysql": "node scripts/import-test-data.mjs --empty --mysql"
|
|
},
|
|
"dependencies": {
|
|
"ckeditor5": "^48.3.1",
|
|
"exceljs": "^4.4.0",
|
|
"mysql2": "^3.14.2",
|
|
"qrcode": "1.5.4",
|
|
"redis": "^5.12.1",
|
|
"sanitize-html": "^2.17.6"
|
|
},
|
|
"overrides": {
|
|
"exceljs": {
|
|
"uuid": "^11.1.1"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=22.5"
|
|
}
|
|
}
|