-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 914 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 914 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
41
42
43
{
"name": "frkb-api",
"version": "1.0.0",
"description": "FRKB API后端服务",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"admin": "node cli/admin.js",
"setup": "node scripts/setup.js",
"lint": "eslint src/ cli/ --ext .js",
"logs": "tail -f logs/app.log"
},
"dependencies": {
"dotenv": "^17.2.1",
"express": "^4.18.2",
"mongoose": "^8.16.5",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"compression": "^1.7.4",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"uuid": "^9.0.1",
"crypto": "^1.0.1",
"bloom-filters": "^3.0.1",
"commander": "^11.1.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"keywords": [
"api",
"nodejs",
"express",
"mongodb",
"electron"
],
"author": "Your Name",
"license": "MIT"
}