- 修改 .gitignore 文件,添加新忽略的目录 - 在 package.json 中添加 better-sqlite3 依赖 - 更新 index.html,改进登录表单,添加注册按钮 - 优化 login.js 中的 fetch 请求和错误处理
18 lines
341 B
JSON
18 lines
341 B
JSON
{
|
|
"name": "html",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "nodemon index.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"dependencies": {
|
|
"better-sqlite3": "^11.5.0",
|
|
"express": "^4.21.1",
|
|
"nodemon": "^3.1.7"
|
|
}
|
|
}
|