Skip to content

Commit 29db7bc

Browse files
committed
feat: BETTER THEMES? IN MY BLUEPRINT??
1 parent 3ab8d8a commit 29db7bc

File tree

7 files changed

+10894
-5
lines changed

7 files changed

+10894
-5
lines changed

blueprint.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,20 @@ if [[ $1 != "-bash" ]]; then
244244
"\n$C4██ ██$C1$C2$C3$C0 https://blueprint.zip" \
245245
"\n$C4 ████$C1$C2$C3$C0 © 2023-2025 Emma (prpl.wtf)\n";
246246

247-
export PROGRESS_TOTAL=14
247+
export PROGRESS_TOTAL=15
248248
export PROGRESS_NOW=0
249249
fi
250250

251+
PRINT INFO "Installing node modules.."
252+
# Check for yarn before installing node modules..
253+
if ! [ -x "$(command -v yarn)" ]; then
254+
PRINT FATAL "Missing dependency \"yarn\"."
255+
fi
256+
hide_progress
257+
yarn install
258+
259+
((PROGRESS_NOW++))
260+
251261
PRINT INFO "Searching and validating framework dependencies.."
252262
depend # Check if required dependencies are installed
253263

package.json

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
{
2+
"name": "pterodactyl-panel",
3+
"engines": {
4+
"node": ">=17"
5+
},
6+
"dependencies": {
7+
"@floating-ui/react-dom-interactions": "^0.6.6",
8+
"@fortawesome/fontawesome-svg-core": "^1.2.32",
9+
"@fortawesome/free-solid-svg-icons": "^5.15.1",
10+
"@fortawesome/react-fontawesome": "^0.1.11",
11+
"@headlessui/react": "^1.6.4",
12+
"@heroicons/react": "^1.0.6",
13+
"@hot-loader/react-dom": "^16.14.0",
14+
"@preact/signals-react": "^1.2.1",
15+
"@tailwindcss/forms": "^0.5.2",
16+
"axios": "^0.27.2",
17+
"boring-avatars": "^1.7.0",
18+
"chart.js": "^3.8.0",
19+
"classnames": "^2.3.1",
20+
"codemirror": "^5.57.0",
21+
"copy-to-clipboard": "^3.3.1",
22+
"date-fns": "^2.28.0",
23+
"debounce": "^1.2.0",
24+
"deepmerge-ts": "^4.2.1",
25+
"easy-peasy": "^4.0.1",
26+
"events": "^3.0.0",
27+
"formik": "^2.2.6",
28+
"framer-motion": "^6.3.10",
29+
"i18next": "^21.8.9",
30+
"i18next-http-backend": "^1.4.1",
31+
"i18next-multiload-backend-adapter": "^1.0.0",
32+
"qrcode.react": "^1.0.1",
33+
"react": "^16.14.0",
34+
"react-chartjs-2": "^4.2.0",
35+
"react-dom": "npm:@hot-loader/react-dom",
36+
"react-fast-compare": "^3.2.0",
37+
"react-hot-loader": "^4.12.21",
38+
"react-i18next": "^11.2.1",
39+
"react-router-dom": "^5.1.2",
40+
"react-transition-group": "^4.4.1",
41+
"reaptcha": "^1.7.2",
42+
"sockette": "^2.0.6",
43+
"styled-components": "^5.2.1",
44+
"styled-components-breakpoint": "^3.0.0-preview.20",
45+
"swr": "^0.2.3",
46+
"tailwindcss": "3.4.17",
47+
"use-fit-text": "^2.4.0",
48+
"uuid": "^8.3.2",
49+
"xterm": "^4.19.0",
50+
"xterm-addon-fit": "^0.5.0",
51+
"xterm-addon-search": "^0.9.0",
52+
"xterm-addon-search-bar": "^0.2.0",
53+
"xterm-addon-web-links": "^0.6.0",
54+
"yup": "^0.29.1"
55+
},
56+
"devDependencies": {
57+
"@babel/core": "^7.12.1",
58+
"@babel/plugin-proposal-class-properties": "^7.12.1",
59+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
60+
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
61+
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
62+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
63+
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
64+
"@babel/plugin-transform-react-jsx": "^7.12.1",
65+
"@babel/plugin-transform-runtime": "^7.12.1",
66+
"@babel/preset-env": "^7.12.1",
67+
"@babel/preset-react": "^7.12.1",
68+
"@babel/preset-typescript": "^7.12.1",
69+
"@babel/runtime": "^7.12.1",
70+
"@testing-library/dom": "^8.14.0",
71+
"@testing-library/jest-dom": "^5.16.4",
72+
"@testing-library/react": "12.1.5",
73+
"@testing-library/user-event": "^14.2.1",
74+
"@types/codemirror": "^0.0.98",
75+
"@types/debounce": "^1.2.0",
76+
"@types/events": "^3.0.0",
77+
"@types/jest": "^28.1.3",
78+
"@types/node": "^14.11.10",
79+
"@types/qrcode.react": "^1.0.1",
80+
"@types/react": "^16.14.0",
81+
"@types/react-copy-to-clipboard": "^4.3.0",
82+
"@types/react-dom": "^16.9.16",
83+
"@types/react-redux": "^7.1.1",
84+
"@types/react-router": "^5.1.3",
85+
"@types/react-router-dom": "^5.1.3",
86+
"@types/react-transition-group": "^4.4.0",
87+
"@types/styled-components": "^5.1.7",
88+
"@types/uuid": "^3.4.5",
89+
"@types/webpack-env": "^1.15.2",
90+
"@types/yup": "^0.29.3",
91+
"@typescript-eslint/eslint-plugin": "^5.29.0",
92+
"@typescript-eslint/parser": "^5.29.0",
93+
"autoprefixer": "^10.4.7",
94+
"babel-jest": "^28.1.1",
95+
"babel-loader": "^8.2.5",
96+
"babel-plugin-styled-components": "^2.0.7",
97+
"cross-env": "^7.0.2",
98+
"css-loader": "^5.2.7",
99+
"eslint": "^8.18.0",
100+
"eslint-config-prettier": "^8.5.0",
101+
"eslint-plugin-jest-dom": "^4.0.2",
102+
"eslint-plugin-node": "^11.1.0",
103+
"eslint-plugin-prettier": "^4.0.0",
104+
"eslint-plugin-react": "^7.30.1",
105+
"eslint-plugin-react-hooks": "^4.6.0",
106+
"fork-ts-checker-webpack-plugin": "^6.2.10",
107+
"identity-obj-proxy": "^3.0.0",
108+
"jest": "^28.1.1",
109+
"postcss": "^8.4.14",
110+
"postcss-import": "^14.1.0",
111+
"postcss-loader": "^4.0.0",
112+
"postcss-nesting": "^10.1.8",
113+
"postcss-preset-env": "^7.7.1",
114+
"prettier": "^2.7.1",
115+
"redux-devtools-extension": "^2.13.8",
116+
"source-map-loader": "^1.1.3",
117+
"style-loader": "^2.0.0",
118+
"svg-url-loader": "^7.1.1",
119+
"terser-webpack-plugin": "^4.2.3",
120+
"ts-essentials": "^9.1.2",
121+
"ts-jest": "^28.0.5",
122+
"twin.macro": "^2.8.2",
123+
"typescript": "^4.7.3",
124+
"webpack": "^4.43.0",
125+
"webpack-assets-manifest": "^3.1.1",
126+
"webpack-bundle-analyzer": "^3.8.0",
127+
"webpack-cli": "^3.3.12",
128+
"webpack-dev-server": "^3.11.0",
129+
"yarn-deduplicate": "^1.1.1"
130+
},
131+
"scripts": {
132+
"clean": "cd public/assets && find . \\( -name \"*.js\" -o -name \"*.map\" \\) -type f -delete",
133+
"test": "jest",
134+
"lint": "eslint ./resources/scripts/**/*.{ts,tsx} --ext .ts,.tsx",
135+
"watch": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --watch --progress",
136+
"build": "cross-env NODE_ENV=development ./node_modules/.bin/webpack --progress",
137+
"build:production": "yarn run clean && cross-env NODE_ENV=production ./node_modules/.bin/webpack --mode production",
138+
"serve": "yarn run clean && cross-env WEBPACK_PUBLIC_PATH=/webpack@hmr/ NODE_ENV=development webpack-dev-server --host 0.0.0.0 --port 8080 --public https://pterodactyl.test --hot"
139+
},
140+
"browserslist": [
141+
"> 0.5%",
142+
"last 2 versions",
143+
"firefox esr",
144+
"not dead"
145+
],
146+
"babelMacros": {
147+
"twin": {
148+
"preset": "styled-components"
149+
},
150+
"styledComponents": {
151+
"pure": true,
152+
"displayName": true,
153+
"fileName": true
154+
}
155+
}
156+
}

0 commit comments

Comments
 (0)