initial commit

This commit is contained in:
2026-02-09 11:40:12 +08:00
commit 1f98910722
63 changed files with 4972 additions and 0 deletions

25
backend/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "leye-service",
"version": "1.0.0",
"type": "module",
"bin": "index.js",
"pkg": {
"assets": [
"favicon.ico",
"node_modules/sqlite3/**/*"
],
"targets": [
"node18-win-x64"
],
"outputPath": "dist",
"options": [
"no-warnings"
]
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"sqlite3": "^5.1.6",
"sqlite": "^5.0.1"
}
}