generated from darkwaves-ofc/NodeJS-Backend-Structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.15 KB
/
package.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "Torrent-Downloader",
"version": "1.1.2",
"description": "Torrent-Downloader Backend",
"main": "dist/index.js",
"types": "src/index.ts",
"preview": true,
"homepage": "https://github.com/darkwaves-ofc/NodeJS-Backend-Structure",
"bugs": {
"url": "https://github.com/darkwaves-ofc/NodeJS-Backend-Structure/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=16.5.0"
},
"author": "Dark Waves <[email protected]> (https://github.com/darkwaves-ofc)",
"files": [
"dist/**/**/*"
],
"scripts": {
"build": "npm run format && tsc",
"start": "npm run build && node dist/index.js",
"devStart": "tsc --incremental && node dist/index.js",
"dev": "nodemon",
"format": "prettier --write \"src/\""
},
"keywords": [
"nodejs",
"backend-strucutre",
"nodejs-backend",
"nodejs-backend-structure",
"express-structure",
"mongoose",
"mongodb",
"kafka",
"rabbitmq",
"amqp",
"socket.io",
"typescript",
"es6",
"es7",
"es8"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darkwaves-ofc/NodeJS-Backend-Structure.git"
},
"contributors": [
"Vimukthi Indunil (https://github.com/darkwaves-ofc)",
"AchiraGaming (https://github.com/achiragaming)"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/archiver": "^6.0.2",
"@types/bcrypt": "^5.0.2",
"@types/circular-json": "^0.4.0",
"@types/cookie-parser": "^1.4.6",
"@types/ejs": "^3.1.5",
"@types/events": "^3.0.0",
"@types/express": "^4.17.21",
"@types/gulp": "^4.0.17",
"@types/gulp-zip": "^4.0.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.6",
"@types/randomcolor": "^0.5.9",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^9.0.7",
"@types/webtorrent": "^0.109.7",
"@types/ws": "^8.5.10",
"discord.js": "^14.6.0",
"eslint": "^8.56.0",
"gulp-zip": "^6.0.0",
"prettier": "^2.7.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
},
"dependencies": {
"amqplib": "^0.10.3",
"archiver": "^6.0.1",
"axios": "^1.4.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"canvas": "^2.11.2",
"chalk": "^4.1.2",
"circular-json": "^0.5.9",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dayjs": "^1.11.7",
"diskusage-ng": "^1.0.4",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"file-type": "^18.5.0",
"fs": "^0.0.1-security",
"gulp": "^4.0.2",
"jsonwebtoken": "^9.0.0",
"kafkajs": "^2.2.4",
"loaders.css": "^0.1.2",
"moment": "^2.29.4",
"mongoose": "^7.2.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.2",
"pidusage": "^3.0.2",
"prettier": "^3.1.1",
"randomcolor": "^0.6.2",
"socket.io": "^4.7.2",
"systeminformation": "^5.21.17",
"tmp-promise": "^3.0.3",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.0",
"voucher-code-generator": "^1.3.0",
"webtorrent": "^2.1.32",
"ws": "^8.13.0"
}
}