-
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.03 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.03 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": "blog-backend",
"version": "1.0.0",
"description": "个人博客后端API服务",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"init-db": "node src/scripts/init-db.js"
},
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.3.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.5",
"openai": "^6.32.0",
"redis": "^4.6.11",
"uuid": "^9.0.1"
},
"devDependencies": {
"node-windows": "^1.0.0-beta.8",
"nodemon": "^3.0.2"
},
"keywords": [
"blog",
"api",
"nodejs",
"express"
],
"_moduleAliases": {
"@": "src",
"@config": "src/config",
"@routes": "src/routes",
"@middleware": "src/middleware",
"@utils": "src/utils"
},
"author": "",
"license": "MIT"
}