-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.36 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.36 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
{
"name": "prism",
"version": "0.5.0",
"description": "The official Heliactyl client area for the Pterodactyl Panel.",
"main": "app.js",
"author": "Matt James",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@keyv/sqlite": "^3.6.7",
"@tailwindcss/forms": "^0.5.7",
"apicache": "^1.6.3",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"chalk": "^4.1.0",
"chokidar": "^3.6.0",
"cli-progress": "^3.12.0",
"compression": "^1.7.5",
"connect-redis": "^7.1.1",
"connect-sqlite3": "^0.9.15",
"cookie": "^1.0.1",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.7",
"express": "^4.21.2",
"express-openid-connect": "^2.17.1",
"express-rate-limit": "^7.4.1",
"express-session": "^1.17.2",
"express-slow-down": "^1.6.0",
"express-validator": "^7.2.0",
"express-ws": "^4.0.0",
"form-data": "^4.0.1",
"googleapis": "^144.0.0",
"helmet": "^8.0.0",
"hono": "^4.6.14",
"ioredis": "^5.4.1",
"javascript-obfuscator": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"keyv": "^4.5.4",
"lru-cache": "^7.18.3",
"moment": "^2.30.1",
"mysql2": "^3.11.4",
"nocache": "^4.0.0",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.6",
"node-schedule": "^2.1.1",
"ora": "^5.4.1",
"passport": "^0.7.0",
"passport-auth0": "^1.4.4",
"preline": "^2.3.0",
"redis": "^4.7.0",
"sqlite3": "^5.1.7",
"ssh2-sftp-client": "^11.0.0",
"sticky-session": "^1.1.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"url": "^0.11.4",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"ws": "^8.18.0",
"xml2js": "^0.6.2",
"yamljs": "^0.3.0"
},
"scripts": {
"mono:build": "cd panel && npm run build",
"db:build:macos": "cd prismdb && cargo build --release && cp target/release/libprismdb.dylib ../ffi/libprismdb.dylib",
"db:build:linux": "cd prismdb && cargo build --release && cp target/release/libprismdb.so ../ffi/libprismdb.so",
"db:build:windows": "cd prismdb && cargo build --release && cp target/release/prismdb.dll ../ffi/prismdb.dll",
"start": "node --no-deprecation app.js",
"build": "npx tailwindcss -i ./assets/tw.conf -o ./assets/tailwind.css --watch"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.24.0"
}
}