-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "notebot",
"version": "1.0.0",
"description": "A Node.js backend system supporting Onebot11 protocol with Redis storage",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"lint": "eslint src/",
"build": "echo 'No build step required'"
},
"keywords": [
"onebot11",
"redis",
"bot",
"plugin",
"scheduler"
],
"author": "NoteBot Team",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"bcrypt": "^6.0.0",
"bcryptjs": "^2.4.3",
"chokidar": "^3.5.3",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.2",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"puppeteer": "^24.20.0",
"redis": "^4.6.10",
"rimraf": "^6.0.1",
"socket.io": "^4.7.4",
"winston": "^3.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^30.1.3",
"nodemon": "^3.0.1"
},
"overrides": {
"glob": ">=10.0.0",
"inflight": "npm:@isaacs/inflight@^1.0.6",
"@humanwhocodes/config-array": "npm:@eslint/config-array@^0.18.0",
"@humanwhocodes/object-schema": "npm:@eslint/object-schema@^2.1.4"
},
"engines": {
"node": ">=16.0.0"
}
}