Public Source Viewer
비나래아카이브 개발자 포털
실제 서비스 구조를 살펴볼 수 있는 공개용 코드 뷰어입니다. 인증, 세션, 외부 연동, 토큰, 관리자 식별 등 보안상 민감한 구현은 파일 단위 또는 줄 단위로 검열됩니다.
package.json
공개 가능
1
{
2
"name": "hinana.moe",
3
"version": "1.0.0",
4
"description": "hinana.moe",
5
"main": "index.js",
6
"scripts": {
7
"test": "echo \"Error: no test specified\" && exit 1",
8
"build": "tsc",
9
"start": "npm run build && node --no-deprecation dist/index.js",
10
"dev": "nodemon --watch src --ext ts --exec ts-node --no-deprecation src/index.ts",
11
"serv": "node --no-deprecation dist/index.js"
12
},
13
"dependencies": {
14
"@google/generative-ai": "^0.24.1",
15
"discord.js": "^14.16.3",
16
"add": "^2.0.6",
17
"axios": "^0.21.1",
18
"body-parser": "^1.18.3",
19
"bootstrap": "^5.3.3",
20
"connect-flash": "^0.1.1",
21
"cookie-parser": "^1.4.7",
22
"csurf": "^1.11.0",
23
"date-and-time": "^0.14.2",
24
"dotenv": "^17.2.4",
25
"ejs": "^3.1.10",
26
"express": "^4.21.2",
27
"express-favicon": "^2.0.1",
28
"express-flash": "0.0.2",
29
"express-session": "^1.17.1",
30
"express-title": "^0.1.0",
31
"firebase-admin": "^13.6.1",
32
"moment": "^2.30.1",
33
"multer": "^1.4.5-lts.1",
34
"mysql": "^2.18.1",
35
"mysql2": "^2.2.5",
36
"node-fetch": "^2.6.1",
37
"node-schedule": "^1.3.2",
38
"nodemon": "^2.0.7",
39
"openai": "^6.9.1",
40
"or": "^0.2.0",
41
"passport": "^0.4.1",
42
"passport-local": "^1.0.0",
43
"request": "^2.88.2",
44
"sanitize-html": "^2.17.0",
45
"serve-favicon": "^2.5.0",
46
"vhost": "^3.0.2",
47
"vhttps": "^0.1.1",
48
"web-push": "^3.6.7",
49
"yarn": "^1.22.10"
50
},
51
"devDependencies": {
52
"@types/body-parser": "^1.19.6",
53
"@types/cookie-parser": "^1.4.10",
54
"@types/csurf": "^1.11.5",
55
"@types/ejs": "^3.1.5",
56
"@types/express": "^5.0.6",
57
"@types/express-session": "^1.18.2",
58
"@types/moment": "^2.11.29",
59
"@types/multer": "^2.0.0",
60
"@types/node": "^25.2.3",
61
"@types/node-schedule": "^2.1.8",
62
"@types/passport": "^1.0.17",
63
"@types/passport-local": "^1.0.38",
64
"@types/sanitize-html": "^2.16.0",
65
"@types/serve-favicon": "^2.5.7",
66
"@types/uuid": "^10.0.0",
67
"@types/web-push": "^3.6.4",
68
"ts-node": "^10.9.2",
69
"typescript": "^5.9.3"
70
}
71
}
72