-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-sqlite.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
package-sqlite.json
File metadata and controls
40 lines (40 loc) · 1002 Bytes
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
{
"name": "lark-task-system",
"version": "1.0.0",
"description": "基于 Lark 多维表格的任务管理系统(SQLite版)",
"main": "src/index-sqlite.js",
"scripts": {
"start": "node src/index-sqlite.js",
"dev": "nodemon src/index-sqlite.js",
"test": "jest",
"lint": "eslint src/",
"migrate": "node scripts/migrate-sqlite.js"
},
"keywords": [
"lark",
"task-management",
"bug-tracking"
],
"author": "",
"license": "MIT",
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.0.0",
"axios": "^1.7.0",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.0",
"winston": "^3.8.0",
"sqlite3": "^5.1.6",
"sequelize": "^6.35.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"jest": "^29.0.0",
"nodemon": "^3.0.0"
}
}