初始化

This commit is contained in:
2026-01-23 21:56:02 +08:00
commit 67c85dfb91
25 changed files with 10055 additions and 0 deletions

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "crm-system",
"version": "1.0.0",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"initdb": "node server.js --initdb"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"sqlite3": "^5.1.7"
}
}