-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.68 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.68 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
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
{
"name": "platform_manager",
"version": "1.1.0",
"description": "Manages docker applications on a single server.",
"main": "platform_manager.js",
"author": "Thomas LEDOS",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=12.9.0"
},
"scripts": {
"webpack:build": "webpack --config pmng_server/admin_panel/static/webpack.config.js",
"webpack:watch": "webpack --config pmng_server/admin_panel/static/webpack.config.js --watch",
"mails:build": "node pmng_server/mails/templates/build_templates.js",
"mails:watch": "node pmng_server/mails/templates/build_templates.js --watch",
"lint:ejs": "ejslint",
"build": "yarn run webpack:build",
"run": "node platform_manager.js",
"debug": "sudo node platform_manager.js",
"checkinstall": "node scripts/checkinstall.js"
},
"dependencies": {
"@gitbeaker/node": "^25.4.0",
"@octokit/rest": "^18.0.9",
"async-exit-hook": "^2.0.1",
"axios": "^0.21.1",
"basic-auth": "^2.0.1",
"bcrypt": "^5.0.0",
"bent": "^7.3.12",
"body-parser": "^1.19.0",
"bunyan-blackhole": "^1.1.1",
"chownr": "^2.0.0",
"compare-versions": "^3.6.0",
"connect-session-knex": "^2.0.0",
"dotenv": "^8.2.0",
"downloadjs": "^1.4.7",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-flash-messages": "^0.1.1",
"express-session": "^1.17.1",
"ftp-srv": "^4.3.1",
"get-folder-size": "^2.0.1",
"git-http-backend": "^1.0.2",
"got": "^11.8.2",
"greenlock": "^4.0.4",
"greenlock-store-fs": "^3.2.2",
"http-proxy": "^1.18.1",
"http2-proxy": "^5.0.53",
"ip6addr": "^0.2.3",
"is-cidr": "^4.0.2",
"is-ip": "^3.1.0",
"knex": "^0.21.12",
"knex-mariadb": "^2.0.0",
"longjohn": "^0.2.12",
"mariadb": "^2.5.1",
"native-node-dns": "^0.7.6",
"native-node-dns-packet": "^0.1.5",
"net": "^1.0.2",
"nocache": "^2.1.0",
"node-cache": "^5.1.2",
"node-cron": "^2.0.3",
"node-docker-api": "^1.1.22",
"node-pty": "^0.10.1",
"nodemailer": "^6.4.13",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-gitlab2": "^5.0.0",
"passport-headerapikey": "^1.2.2",
"passport-local": "^1.0.0",
"passport-oauth2-refresh": "^2.0.0",
"rmfr": "^2.0.0",
"runtime-caching": "^1.0.1",
"simple-git": "^1.132.0",
"simple-node-logger": "^18.12.24",
"socket.io": "^2.3.0",
"socketio-auth": "^0.1.1",
"stream-json": "^1.7.3",
"tail": "^2.0.4",
"tar": "^6.1.2",
"tar-fs": "^2.1.0",
"tar-stream": "^2.1.4",
"tree-kill": "^1.2.2",
"unixcrypt": "^1.1.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"acme-dns-01-test": "^3.3.2",
"animate.css": "3.7.2",
"bootstrap": "^4.4.1",
"bootstrap-email": "https://github.com/th0m4s/bootstrap-email",
"bootstrap-notify": "^3.1.3",
"bootstrap4-tagsinput-umd": "https://github.com/th0m4s/bootstrap4-tagsinput",
"chart.js": "2.9.4",
"chartjs-plugin-streaming": "^1.8.0",
"chokidar": "^3.4.2",
"corejs-typeahead": "^1.3.0",
"css-loader": "^3.4.2",
"currify": "^4.0.0",
"ejs-lint": "^1.0.1",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"jquery": "^3.4.1",
"js-cookie": "^2.2.1",
"moment": "^2.26.0",
"moment-locales-webpack-plugin": "^1.2.0",
"popper.js": "1.16.0",
"style-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"wraptile": "^3.0.0",
"xterm": "^5.0.0",
"xterm-addon-fit": "^0.6.0",
"xterm-addon-webgl": "^0.13.0"
}
}