-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
41
42
43
44
45
46
47
48
{
"name": "lark-task-system",
"version": "1.0.0",
"description": "基于 Lark 多维表格的任务管理系统",
"main": "src/index.js",
"scripts": {
"start": "node src/index-sqlite.js",
"start:mongodb": "node src/index.js",
"start:https": "node src/server-https.js",
"start:port": "node start-port.js",
"dev": "nodemon src/index-sqlite.js",
"dev:mongodb": "nodemon src/index.js",
"dev:https": "nodemon src/server-https.js",
"test": "jest",
"lint": "eslint src/",
"migrate": "node scripts/migrate.js",
"cert:create": "create-local-cert.bat"
},
"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",
"mongoose": "^7.0.0",
"node-cron": "^3.0.0",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"winston": "^3.8.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"jest": "^29.0.0",
"nodemon": "^3.0.0"
}
}