forked from RyanisyydsTT/skyport-tw-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "skyport",
"version": "0.2.0",
"description": "Skyport is an open source panel for managing and operating game servers and applications built using Node.js with Express and Dockerode.",
"main": "index.js",
"bin": {
"skyport": "./exec/bin/index.js"
},
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"dev": "concurrently \"npm run start\" \"npm run watch\"",
"watch": "browser-sync start --config bs-config.js",
"seed": "node exec/seed.js",
"createUser": "node exec/createUser.js",
"build:css": "npx tailwindcss -i ./public/tw.conf -o ./public/assets/tailwind.css --watch"
},
"author": "skyportlabs",
"license": "ISC",
"dependencies": {
"@keyv/sqlite": "^3.6.7",
"@tailwindcss/forms": "^0.5.7",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.1.2",
"better-sqlite3-session-store": "^0.1.0",
"body-parser": "^1.20.2",
"cat-loggr": "^1.2.2",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-basic-auth": "^1.2.1",
"express-session": "^1.18.0",
"express-ws": "^5.0.2",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"keyv": "^4.5.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"qrcode": "^1.5.3",
"readline": "^1.3.0",
"speakeasy": "^2.0.0",
"tailwindcss": "^3.4.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4"
}
}