-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
66
67
68
69
70
71
{
"name": "ebbs",
"version": "0.0.1",
"description": "easy bbs build with nodejs express",
"main": "./lib/src/index.js",
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json",
"build:lang": "ts-node ./scripts/build.lang.ts",
"dev": "npm run build && npm run build:lang && node ./lib/src/app.js",
"start": "npm run build && npm run build:lang && pm2 start processes.json",
"stop": "pm2 start processes.json",
"restart": "npm run build && npm run build:lang && pm2 restart processes.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enncy/ebbs.git"
},
"keywords": [
"easy",
"bbs",
"nodejs",
"express"
],
"author": "enncy",
"license": "MIT",
"bugs": {
"url": "https://github.com/enncy/ebbs/issues"
},
"homepage": "https://github.com/enncy/ebbs#readme",
"dependencies": {
"@node-rs/jieba": "^1.10.3",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.1",
"@types/string-similarity": "^4.0.2",
"chalk": "^4.1.2",
"connect-mongo": "^5.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"express-session": "^1.18.0",
"glob": "^10.3.10",
"ip2region": "^2.3.0",
"lodash": "^4.17.21",
"mailparser": "^3.7.1",
"mongoose": "^8.6.0",
"node-forge": "^1.3.1",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
"sharp": "^0.33.5",
"smtp-server": "^3.13.4",
"string-similarity": "^4.0.4",
"svg-captcha": "^1.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express-fileupload": "^1.5.1",
"@types/mailparser": "^3.4.4",
"@types/node-cron": "^3.0.11",
"@types/node-forge": "^1.3.11",
"@types/nodemailer": "^6.4.15",
"@types/smtp-server": "^3.5.10",
"tsc-alias": "^1.8.10"
}
}