├── .gitignore ├── .htaccess ├── app.js ├── build ├── asset-manifest.json ├── assets │ ├── KittyAvatar │ │ ├── accessorie_1.png │ │ ├── accessorie_10.png │ │ ├── accessorie_11.png │ │ ├── accessorie_12.png │ │ ├── accessorie_13.png │ │ ├── accessorie_14.png │ │ ├── accessorie_15.png │ │ ├── accessorie_16.png │ │ ├── accessorie_17.png │ │ ├── accessorie_18.png │ │ ├── accessorie_19.png │ │ ├── accessorie_2.png │ │ ├── accessorie_20.png │ │ ├── accessorie_3.png │ │ ├── accessorie_4.png │ │ ├── accessorie_5.png │ │ ├── accessorie_6.png │ │ ├── accessorie_7.png │ │ ├── accessorie_8.png │ │ ├── accessorie_9.png │ │ ├── body_1.png │ │ ├── body_10.png │ │ ├── body_11.png │ │ ├── body_12.png │ │ ├── body_13.png │ │ ├── body_14.png │ │ ├── body_15.png │ │ ├── body_2.png │ │ ├── body_3.png │ │ ├── body_4.png │ │ ├── body_5.png │ │ ├── body_6.png │ │ ├── body_7.png │ │ ├── body_8.png │ │ ├── body_9.png │ │ ├── eyes_1.png │ │ ├── eyes_10.png │ │ ├── eyes_11.png │ │ ├── eyes_12.png │ │ ├── eyes_13.png │ │ ├── eyes_14.png │ │ ├── eyes_15.png │ │ ├── eyes_2.png │ │ ├── eyes_3.png │ │ ├── eyes_4.png │ │ ├── eyes_5.png │ │ ├── eyes_6.png │ │ ├── eyes_7.png │ │ ├── eyes_8.png │ │ ├── eyes_9.png │ │ ├── fur_1.png │ │ ├── fur_10.png │ │ ├── fur_2.png │ │ ├── fur_3.png │ │ ├── fur_4.png │ │ ├── fur_5.png │ │ ├── fur_6.png │ │ ├── fur_7.png │ │ ├── fur_8.png │ │ ├── fur_9.png │ │ ├── mouth_1.png │ │ ├── mouth_10.png │ │ ├── mouth_2.png │ │ ├── mouth_3.png │ │ ├── mouth_4.png │ │ ├── mouth_5.png │ │ ├── mouth_6.png │ │ ├── mouth_7.png │ │ ├── mouth_8.png │ │ ├── mouth_9.png │ │ └── partlist.txt │ ├── favicon.ico │ ├── main.css │ └── substrate-logo.png ├── index.html ├── manifest.json └── static │ ├── css │ ├── main.8ddb3f2f.css │ └── main.8ddb3f2f.css.map │ ├── js │ ├── main.ea6e0eef.js │ ├── main.ea6e0eef.js.LICENSE.txt │ └── main.ea6e0eef.js.map │ └── media │ ├── brand-icons.278156e41e0ad908cf7f.woff2 │ ├── brand-icons.65a2fb6d9aaa164b41a0.ttf │ ├── brand-icons.6729d29753e000c17489.svg │ ├── brand-icons.cac87dc00c87a5d74711.woff │ ├── brand-icons.d68fa3e67dbb653a13ce.eot │ ├── flags.99f63ae7a743f21ab308.png │ ├── icons.38c6d8bab26db77d8c80.woff2 │ ├── icons.425399f81e4ce7cbd967.woff │ ├── icons.62d9dae4e0040e81c980.svg │ ├── icons.a01e3f2d6c83dc3aee17.eot │ ├── icons.c656b8caa454ed19b9a2.ttf │ ├── index.f2b6f7ffc9a430272d20.cjs │ ├── outline-icons.5367103510b27b784827.ttf │ ├── outline-icons.687a4990ea22bb1a49d4.woff2 │ ├── outline-icons.752905fa5edf21fc52a1.eot │ ├── outline-icons.9c4845b4b41ef40a22fa.svg │ └── outline-icons.ddae9b1ba9b0b42f5880.woff ├── client ├── asset-manifest.json ├── assets │ ├── KittyAvatar │ │ ├── accessorie_1.png │ │ ├── accessorie_10.png │ │ ├── accessorie_11.png │ │ ├── accessorie_12.png │ │ ├── accessorie_13.png │ │ ├── accessorie_14.png │ │ ├── accessorie_15.png │ │ ├── accessorie_16.png │ │ ├── accessorie_17.png │ │ ├── accessorie_18.png │ │ ├── accessorie_19.png │ │ ├── accessorie_2.png │ │ ├── accessorie_20.png │ │ ├── accessorie_3.png │ │ ├── accessorie_4.png │ │ ├── accessorie_5.png │ │ ├── accessorie_6.png │ │ ├── accessorie_7.png │ │ ├── accessorie_8.png │ │ ├── accessorie_9.png │ │ ├── body_1.png │ │ ├── body_10.png │ │ ├── body_11.png │ │ ├── body_12.png │ │ ├── body_13.png │ │ ├── body_14.png │ │ ├── body_15.png │ │ ├── body_2.png │ │ ├── body_3.png │ │ ├── body_4.png │ │ ├── body_5.png │ │ ├── body_6.png │ │ ├── body_7.png │ │ ├── body_8.png │ │ ├── body_9.png │ │ ├── eyes_1.png │ │ ├── eyes_10.png │ │ ├── eyes_11.png │ │ ├── eyes_12.png │ │ ├── eyes_13.png │ │ ├── eyes_14.png │ │ ├── eyes_15.png │ │ ├── eyes_2.png │ │ ├── eyes_3.png │ │ ├── eyes_4.png │ │ ├── eyes_5.png │ │ ├── eyes_6.png │ │ ├── eyes_7.png │ │ ├── eyes_8.png │ │ ├── eyes_9.png │ │ ├── fur_1.png │ │ ├── fur_10.png │ │ ├── fur_2.png │ │ ├── fur_3.png │ │ ├── fur_4.png │ │ ├── fur_5.png │ │ ├── fur_6.png │ │ ├── fur_7.png │ │ ├── fur_8.png │ │ ├── fur_9.png │ │ ├── mouth_1.png │ │ ├── mouth_10.png │ │ ├── mouth_2.png │ │ ├── mouth_3.png │ │ ├── mouth_4.png │ │ ├── mouth_5.png │ │ ├── mouth_6.png │ │ ├── mouth_7.png │ │ ├── mouth_8.png │ │ ├── mouth_9.png │ │ └── partlist.txt │ ├── favicon.ico │ ├── main.css │ └── substrate-logo.png ├── index.html ├── manifest.json └── static │ ├── css │ ├── main.8ddb3f2f.css │ └── main.8ddb3f2f.css.map │ ├── js │ ├── main.ea6e0eef.js │ ├── main.ea6e0eef.js.LICENSE.txt │ └── main.ea6e0eef.js.map │ └── media │ ├── brand-icons.278156e41e0ad908cf7f.woff2 │ ├── brand-icons.65a2fb6d9aaa164b41a0.ttf │ ├── brand-icons.6729d29753e000c17489.svg │ ├── brand-icons.cac87dc00c87a5d74711.woff │ ├── brand-icons.d68fa3e67dbb653a13ce.eot │ ├── flags.99f63ae7a743f21ab308.png │ ├── icons.38c6d8bab26db77d8c80.woff2 │ ├── icons.425399f81e4ce7cbd967.woff │ ├── icons.62d9dae4e0040e81c980.svg │ ├── icons.a01e3f2d6c83dc3aee17.eot │ ├── icons.c656b8caa454ed19b9a2.ttf │ ├── index.f2b6f7ffc9a430272d20.cjs │ ├── outline-icons.5367103510b27b784827.ttf │ ├── outline-icons.687a4990ea22bb1a49d4.woff2 │ ├── outline-icons.752905fa5edf21fc52a1.eot │ ├── outline-icons.9c4845b4b41ef40a22fa.svg │ └── outline-icons.ddae9b1ba9b0b42f5880.woff ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteRule ^(.*) http://127.0.0.1:2001/$1 [P] -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const path = require("path") 3 | const bodyParser = require('body-parser') 4 | const cors = require('cors') 5 | const http = require("http") 6 | 7 | const app = express() 8 | const server = http.Server(app) 9 | 10 | app.use(cors()) 11 | app.use(express.static(__dirname + '/client')) 12 | app.use(bodyParser.json({ limit: "15360mb", type: 'application/json' })) 13 | app.use(bodyParser.urlencoded({ extended: true })) 14 | 15 | app.get('*', (req, res) => { res.sendFile(path.join(__dirname, 'client/index.html')) }) 16 | 17 | server.listen(8000, () => {console.log(`Started server on => http://localhost:${8000}`)}) -------------------------------------------------------------------------------- /build/asset-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "main.css": "/substrate-front-end-template/static/css/main.8ddb3f2f.css", 4 | "main.js": "/substrate-front-end-template/static/js/main.ea6e0eef.js", 5 | "static/media/brand-icons.svg": "/substrate-front-end-template/static/media/brand-icons.6729d29753e000c17489.svg", 6 | "static/media/icons.svg": "/substrate-front-end-template/static/media/icons.62d9dae4e0040e81c980.svg", 7 | "static/media/outline-icons.svg": "/substrate-front-end-template/static/media/outline-icons.9c4845b4b41ef40a22fa.svg", 8 | "static/media/icons.eot": "/substrate-front-end-template/static/media/icons.a01e3f2d6c83dc3aee17.eot", 9 | "static/media/icons.ttf": "/substrate-front-end-template/static/media/icons.c656b8caa454ed19b9a2.ttf", 10 | "static/media/brand-icons.eot": "/substrate-front-end-template/static/media/brand-icons.d68fa3e67dbb653a13ce.eot", 11 | "static/media/brand-icons.ttf": "/substrate-front-end-template/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf", 12 | "static/media/brand-icons.woff": "/substrate-front-end-template/static/media/brand-icons.cac87dc00c87a5d74711.woff", 13 | "static/media/brand-icons.woff2": "/substrate-front-end-template/static/media/brand-icons.278156e41e0ad908cf7f.woff2", 14 | "static/media/icons.woff": "/substrate-front-end-template/static/media/icons.425399f81e4ce7cbd967.woff", 15 | "static/media/icons.woff2": "/substrate-front-end-template/static/media/icons.38c6d8bab26db77d8c80.woff2", 16 | "static/media/outline-icons.eot": "/substrate-front-end-template/static/media/outline-icons.752905fa5edf21fc52a1.eot", 17 | "static/media/outline-icons.ttf": "/substrate-front-end-template/static/media/outline-icons.5367103510b27b784827.ttf", 18 | "static/media/flags.png": "/substrate-front-end-template/static/media/flags.99f63ae7a743f21ab308.png", 19 | "static/media/outline-icons.woff": "/substrate-front-end-template/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff", 20 | "static/media/outline-icons.woff2": "/substrate-front-end-template/static/media/outline-icons.687a4990ea22bb1a49d4.woff2", 21 | "index.html": "/substrate-front-end-template/index.html", 22 | "static/media/index.cjs": "/substrate-front-end-template/static/media/index.f2b6f7ffc9a430272d20.cjs", 23 | "main.8ddb3f2f.css.map": "/substrate-front-end-template/static/css/main.8ddb3f2f.css.map", 24 | "main.ea6e0eef.js.map": "/substrate-front-end-template/static/js/main.ea6e0eef.js.map" 25 | }, 26 | "entrypoints": [ 27 | "static/css/main.8ddb3f2f.css", 28 | "static/js/main.ea6e0eef.js" 29 | ] 30 | } -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_1.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_10.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_11.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_12.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_13.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_14.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_15.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_16.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_17.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_18.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_19.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_2.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_20.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_3.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_4.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_5.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_6.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_7.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_8.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/accessorie_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/accessorie_9.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_1.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_10.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_11.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_12.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_13.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_14.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_15.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_2.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_3.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_4.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_5.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_6.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_7.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_8.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/body_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/body_9.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_1.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_10.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_11.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_12.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_13.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_14.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_15.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_2.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_3.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_4.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_5.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_6.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_7.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_8.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/eyes_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/eyes_9.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_1.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_10.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_2.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_3.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_4.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_5.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_6.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_7.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_8.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/fur_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/fur_9.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_1.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_10.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_2.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_3.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_4.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_5.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_6.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_7.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_8.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/mouth_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/KittyAvatar/mouth_9.png -------------------------------------------------------------------------------- /build/assets/KittyAvatar/partlist.txt: -------------------------------------------------------------------------------- 1 | body 2 | fur 3 | eyes 4 | mouth 5 | accessorie 6 | -------------------------------------------------------------------------------- /build/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/favicon.ico -------------------------------------------------------------------------------- /build/assets/main.css: -------------------------------------------------------------------------------- 1 | .github-fork-ribbon.right-bottom:before { 2 | background-color: #666; 3 | } 4 | 5 | .ui.statistic.block_number > .value { 6 | font-size: 2.4rem !important; 7 | line-height: 4rem !important; 8 | } 9 | -------------------------------------------------------------------------------- /build/assets/substrate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/assets/substrate-logo.png -------------------------------------------------------------------------------- /build/index.html: -------------------------------------------------------------------------------- 1 | Substrate Front End Template
Fork me on GitHub -------------------------------------------------------------------------------- /build/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Substrate Front End", 3 | "name": "Substrate Front End Template", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 48x48 32x32 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /build/static/js/main.ea6e0eef.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /* 2 | object-assign 3 | (c) Sindre Sorhus 4 | @license MIT 5 | */ 6 | 7 | /*! 8 | Copyright (c) 2015 Jed Watson. 9 | Based on code that is Copyright 2013-2015, Facebook, Inc. 10 | All rights reserved. 11 | */ 12 | 13 | /*! 14 | * The buffer module from node.js, for the browser. 15 | * 16 | * @author Feross Aboukhadijeh 17 | * @license MIT 18 | */ 19 | 20 | /*! 21 | * The buffer module from node.js, for the browser. 22 | * 23 | * @author Feross Aboukhadijeh 24 | * @license MIT 25 | */ 26 | 27 | /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ 28 | 29 | /*! noble-secp256k1 - MIT License (c) 2019 Paul Miller (paulmillr.com) */ 30 | 31 | /*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */ 32 | 33 | /** @license React v0.20.2 34 | * scheduler.production.min.js 35 | * 36 | * Copyright (c) Facebook, Inc. and its affiliates. 37 | * 38 | * This source code is licensed under the MIT license found in the 39 | * LICENSE file in the root directory of this source tree. 40 | */ 41 | 42 | /** @license React v16.13.1 43 | * react-is.production.min.js 44 | * 45 | * Copyright (c) Facebook, Inc. and its affiliates. 46 | * 47 | * This source code is licensed under the MIT license found in the 48 | * LICENSE file in the root directory of this source tree. 49 | */ 50 | 51 | /** @license React v17.0.2 52 | * react-dom.production.min.js 53 | * 54 | * Copyright (c) Facebook, Inc. and its affiliates. 55 | * 56 | * This source code is licensed under the MIT license found in the 57 | * LICENSE file in the root directory of this source tree. 58 | */ 59 | 60 | /** @license React v17.0.2 61 | * react-jsx-runtime.production.min.js 62 | * 63 | * Copyright (c) Facebook, Inc. and its affiliates. 64 | * 65 | * This source code is licensed under the MIT license found in the 66 | * LICENSE file in the root directory of this source tree. 67 | */ 68 | 69 | /** @license React v17.0.2 70 | * react.production.min.js 71 | * 72 | * Copyright (c) Facebook, Inc. and its affiliates. 73 | * 74 | * This source code is licensed under the MIT license found in the 75 | * LICENSE file in the root directory of this source tree. 76 | */ 77 | -------------------------------------------------------------------------------- /build/static/media/brand-icons.278156e41e0ad908cf7f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/brand-icons.278156e41e0ad908cf7f.woff2 -------------------------------------------------------------------------------- /build/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf -------------------------------------------------------------------------------- /build/static/media/brand-icons.cac87dc00c87a5d74711.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/brand-icons.cac87dc00c87a5d74711.woff -------------------------------------------------------------------------------- /build/static/media/brand-icons.d68fa3e67dbb653a13ce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/brand-icons.d68fa3e67dbb653a13ce.eot -------------------------------------------------------------------------------- /build/static/media/flags.99f63ae7a743f21ab308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/flags.99f63ae7a743f21ab308.png -------------------------------------------------------------------------------- /build/static/media/icons.38c6d8bab26db77d8c80.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/icons.38c6d8bab26db77d8c80.woff2 -------------------------------------------------------------------------------- /build/static/media/icons.425399f81e4ce7cbd967.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/icons.425399f81e4ce7cbd967.woff -------------------------------------------------------------------------------- /build/static/media/icons.a01e3f2d6c83dc3aee17.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/icons.a01e3f2d6c83dc3aee17.eot -------------------------------------------------------------------------------- /build/static/media/icons.c656b8caa454ed19b9a2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/icons.c656b8caa454ed19b9a2.ttf -------------------------------------------------------------------------------- /build/static/media/index.f2b6f7ffc9a430272d20.cjs: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),require("./detectPackage.cjs");var _bundle=require("./bundle.cjs");Object.keys(_bundle).forEach((function(e){"default"!==e&&"__esModule"!==e&&(e in exports&&exports[e]===_bundle[e]||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _bundle[e]}}))})); -------------------------------------------------------------------------------- /build/static/media/outline-icons.5367103510b27b784827.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/outline-icons.5367103510b27b784827.ttf -------------------------------------------------------------------------------- /build/static/media/outline-icons.687a4990ea22bb1a49d4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/outline-icons.687a4990ea22bb1a49d4.woff2 -------------------------------------------------------------------------------- /build/static/media/outline-icons.752905fa5edf21fc52a1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/outline-icons.752905fa5edf21fc52a1.eot -------------------------------------------------------------------------------- /build/static/media/outline-icons.9c4845b4b41ef40a22fa.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 19 | 22 | 25 | 28 | 31 | 34 | 37 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 61 | 64 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 97 | 100 | 103 | 106 | 109 | 112 | 115 | 118 | 121 | 124 | 127 | 130 | 133 | 136 | 139 | 142 | 145 | 148 | 151 | 154 | 157 | 160 | 163 | 166 | 169 | 172 | 175 | 178 | 181 | 184 | 187 | 190 | 193 | 196 | 199 | 202 | 205 | 208 | 211 | 214 | 217 | 220 | 223 | 226 | 229 | 232 | 235 | 238 | 241 | 244 | 247 | 250 | 253 | 256 | 259 | 262 | 265 | 268 | 271 | 274 | 277 | 280 | 283 | 286 | 289 | 292 | 295 | 298 | 301 | 304 | 307 | 310 | 313 | 316 | 319 | 322 | 325 | 328 | 331 | 334 | 337 | 340 | 343 | 346 | 349 | 352 | 355 | 358 | 361 | 364 | 365 | 366 | 367 | -------------------------------------------------------------------------------- /build/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/build/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff -------------------------------------------------------------------------------- /client/asset-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": { 3 | "main.css": "/substrate-front-end-template/static/css/main.8ddb3f2f.css", 4 | "main.js": "/substrate-front-end-template/static/js/main.ea6e0eef.js", 5 | "static/media/brand-icons.svg": "/substrate-front-end-template/static/media/brand-icons.6729d29753e000c17489.svg", 6 | "static/media/icons.svg": "/substrate-front-end-template/static/media/icons.62d9dae4e0040e81c980.svg", 7 | "static/media/outline-icons.svg": "/substrate-front-end-template/static/media/outline-icons.9c4845b4b41ef40a22fa.svg", 8 | "static/media/icons.eot": "/substrate-front-end-template/static/media/icons.a01e3f2d6c83dc3aee17.eot", 9 | "static/media/icons.ttf": "/substrate-front-end-template/static/media/icons.c656b8caa454ed19b9a2.ttf", 10 | "static/media/brand-icons.eot": "/substrate-front-end-template/static/media/brand-icons.d68fa3e67dbb653a13ce.eot", 11 | "static/media/brand-icons.ttf": "/substrate-front-end-template/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf", 12 | "static/media/brand-icons.woff": "/substrate-front-end-template/static/media/brand-icons.cac87dc00c87a5d74711.woff", 13 | "static/media/brand-icons.woff2": "/substrate-front-end-template/static/media/brand-icons.278156e41e0ad908cf7f.woff2", 14 | "static/media/icons.woff": "/substrate-front-end-template/static/media/icons.425399f81e4ce7cbd967.woff", 15 | "static/media/icons.woff2": "/substrate-front-end-template/static/media/icons.38c6d8bab26db77d8c80.woff2", 16 | "static/media/outline-icons.eot": "/substrate-front-end-template/static/media/outline-icons.752905fa5edf21fc52a1.eot", 17 | "static/media/outline-icons.ttf": "/substrate-front-end-template/static/media/outline-icons.5367103510b27b784827.ttf", 18 | "static/media/flags.png": "/substrate-front-end-template/static/media/flags.99f63ae7a743f21ab308.png", 19 | "static/media/outline-icons.woff": "/substrate-front-end-template/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff", 20 | "static/media/outline-icons.woff2": "/substrate-front-end-template/static/media/outline-icons.687a4990ea22bb1a49d4.woff2", 21 | "index.html": "/substrate-front-end-template/index.html", 22 | "static/media/index.cjs": "/substrate-front-end-template/static/media/index.f2b6f7ffc9a430272d20.cjs", 23 | "main.8ddb3f2f.css.map": "/substrate-front-end-template/static/css/main.8ddb3f2f.css.map", 24 | "main.ea6e0eef.js.map": "/substrate-front-end-template/static/js/main.ea6e0eef.js.map" 25 | }, 26 | "entrypoints": [ 27 | "static/css/main.8ddb3f2f.css", 28 | "static/js/main.ea6e0eef.js" 29 | ] 30 | } -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_16.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_17.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_18.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_19.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_20.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/accessorie_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/accessorie_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/body_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/body_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_11.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_12.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_13.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_14.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_15.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/eyes_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/eyes_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/fur_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/fur_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_1.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_10.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_2.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_3.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_4.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_5.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_6.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_7.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_8.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/mouth_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/KittyAvatar/mouth_9.png -------------------------------------------------------------------------------- /client/assets/KittyAvatar/partlist.txt: -------------------------------------------------------------------------------- 1 | body 2 | fur 3 | eyes 4 | mouth 5 | accessorie 6 | -------------------------------------------------------------------------------- /client/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/favicon.ico -------------------------------------------------------------------------------- /client/assets/main.css: -------------------------------------------------------------------------------- 1 | .github-fork-ribbon.right-bottom:before { 2 | background-color: #666; 3 | } 4 | 5 | .ui.statistic.block_number > .value { 6 | font-size: 2.4rem !important; 7 | line-height: 4rem !important; 8 | } 9 | -------------------------------------------------------------------------------- /client/assets/substrate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/assets/substrate-logo.png -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 | Substrate Front End Template
Fork me on GitHub -------------------------------------------------------------------------------- /client/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Substrate Front End", 3 | "name": "Substrate Front End Template", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 48x48 32x32 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#000000", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /client/static/js/main.ea6e0eef.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /* 2 | object-assign 3 | (c) Sindre Sorhus 4 | @license MIT 5 | */ 6 | 7 | /*! 8 | Copyright (c) 2015 Jed Watson. 9 | Based on code that is Copyright 2013-2015, Facebook, Inc. 10 | All rights reserved. 11 | */ 12 | 13 | /*! 14 | * The buffer module from node.js, for the browser. 15 | * 16 | * @author Feross Aboukhadijeh 17 | * @license MIT 18 | */ 19 | 20 | /*! 21 | * The buffer module from node.js, for the browser. 22 | * 23 | * @author Feross Aboukhadijeh 24 | * @license MIT 25 | */ 26 | 27 | /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ 28 | 29 | /*! noble-secp256k1 - MIT License (c) 2019 Paul Miller (paulmillr.com) */ 30 | 31 | /*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */ 32 | 33 | /** @license React v0.20.2 34 | * scheduler.production.min.js 35 | * 36 | * Copyright (c) Facebook, Inc. and its affiliates. 37 | * 38 | * This source code is licensed under the MIT license found in the 39 | * LICENSE file in the root directory of this source tree. 40 | */ 41 | 42 | /** @license React v16.13.1 43 | * react-is.production.min.js 44 | * 45 | * Copyright (c) Facebook, Inc. and its affiliates. 46 | * 47 | * This source code is licensed under the MIT license found in the 48 | * LICENSE file in the root directory of this source tree. 49 | */ 50 | 51 | /** @license React v17.0.2 52 | * react-dom.production.min.js 53 | * 54 | * Copyright (c) Facebook, Inc. and its affiliates. 55 | * 56 | * This source code is licensed under the MIT license found in the 57 | * LICENSE file in the root directory of this source tree. 58 | */ 59 | 60 | /** @license React v17.0.2 61 | * react-jsx-runtime.production.min.js 62 | * 63 | * Copyright (c) Facebook, Inc. and its affiliates. 64 | * 65 | * This source code is licensed under the MIT license found in the 66 | * LICENSE file in the root directory of this source tree. 67 | */ 68 | 69 | /** @license React v17.0.2 70 | * react.production.min.js 71 | * 72 | * Copyright (c) Facebook, Inc. and its affiliates. 73 | * 74 | * This source code is licensed under the MIT license found in the 75 | * LICENSE file in the root directory of this source tree. 76 | */ 77 | -------------------------------------------------------------------------------- /client/static/media/brand-icons.278156e41e0ad908cf7f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/brand-icons.278156e41e0ad908cf7f.woff2 -------------------------------------------------------------------------------- /client/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/brand-icons.65a2fb6d9aaa164b41a0.ttf -------------------------------------------------------------------------------- /client/static/media/brand-icons.cac87dc00c87a5d74711.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/brand-icons.cac87dc00c87a5d74711.woff -------------------------------------------------------------------------------- /client/static/media/brand-icons.d68fa3e67dbb653a13ce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/brand-icons.d68fa3e67dbb653a13ce.eot -------------------------------------------------------------------------------- /client/static/media/flags.99f63ae7a743f21ab308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/flags.99f63ae7a743f21ab308.png -------------------------------------------------------------------------------- /client/static/media/icons.38c6d8bab26db77d8c80.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/icons.38c6d8bab26db77d8c80.woff2 -------------------------------------------------------------------------------- /client/static/media/icons.425399f81e4ce7cbd967.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/icons.425399f81e4ce7cbd967.woff -------------------------------------------------------------------------------- /client/static/media/icons.a01e3f2d6c83dc3aee17.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/icons.a01e3f2d6c83dc3aee17.eot -------------------------------------------------------------------------------- /client/static/media/icons.c656b8caa454ed19b9a2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/icons.c656b8caa454ed19b9a2.ttf -------------------------------------------------------------------------------- /client/static/media/index.f2b6f7ffc9a430272d20.cjs: -------------------------------------------------------------------------------- 1 | "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),require("./detectPackage.cjs");var _bundle=require("./bundle.cjs");Object.keys(_bundle).forEach((function(e){"default"!==e&&"__esModule"!==e&&(e in exports&&exports[e]===_bundle[e]||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return _bundle[e]}}))})); -------------------------------------------------------------------------------- /client/static/media/outline-icons.5367103510b27b784827.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/outline-icons.5367103510b27b784827.ttf -------------------------------------------------------------------------------- /client/static/media/outline-icons.687a4990ea22bb1a49d4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/outline-icons.687a4990ea22bb1a49d4.woff2 -------------------------------------------------------------------------------- /client/static/media/outline-icons.752905fa5edf21fc52a1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/outline-icons.752905fa5edf21fc52a1.eot -------------------------------------------------------------------------------- /client/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwizard210/pm2_node_server/7edef1c82fb5e4319a166d40c531cc69bfef992d/client/static/media/outline-icons.ddae9b1ba9b0b42f5880.woff -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "template-backend", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "template-backend", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.19.0", 13 | "cors": "^2.8.5", 14 | "express": "^4.17.1", 15 | "http": "0.0.1-security", 16 | "path": "^0.12.7" 17 | } 18 | }, 19 | "node_modules/accepts": { 20 | "version": "1.3.7", 21 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 22 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 23 | "dependencies": { 24 | "mime-types": "~2.1.24", 25 | "negotiator": "0.6.2" 26 | }, 27 | "engines": { 28 | "node": ">= 0.6" 29 | } 30 | }, 31 | "node_modules/array-flatten": { 32 | "version": "1.1.1", 33 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 34 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 35 | }, 36 | "node_modules/body-parser": { 37 | "version": "1.19.0", 38 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 39 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 40 | "dependencies": { 41 | "bytes": "3.1.0", 42 | "content-type": "~1.0.4", 43 | "debug": "2.6.9", 44 | "depd": "~1.1.2", 45 | "http-errors": "1.7.2", 46 | "iconv-lite": "0.4.24", 47 | "on-finished": "~2.3.0", 48 | "qs": "6.7.0", 49 | "raw-body": "2.4.0", 50 | "type-is": "~1.6.17" 51 | }, 52 | "engines": { 53 | "node": ">= 0.8" 54 | } 55 | }, 56 | "node_modules/bytes": { 57 | "version": "3.1.0", 58 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 59 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", 60 | "engines": { 61 | "node": ">= 0.8" 62 | } 63 | }, 64 | "node_modules/content-disposition": { 65 | "version": "0.5.3", 66 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 67 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 68 | "dependencies": { 69 | "safe-buffer": "5.1.2" 70 | }, 71 | "engines": { 72 | "node": ">= 0.6" 73 | } 74 | }, 75 | "node_modules/content-type": { 76 | "version": "1.0.4", 77 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 78 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", 79 | "engines": { 80 | "node": ">= 0.6" 81 | } 82 | }, 83 | "node_modules/cookie": { 84 | "version": "0.4.0", 85 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 86 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", 87 | "engines": { 88 | "node": ">= 0.6" 89 | } 90 | }, 91 | "node_modules/cookie-signature": { 92 | "version": "1.0.6", 93 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 94 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 95 | }, 96 | "node_modules/cors": { 97 | "version": "2.8.5", 98 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 99 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 100 | "dependencies": { 101 | "object-assign": "^4", 102 | "vary": "^1" 103 | }, 104 | "engines": { 105 | "node": ">= 0.10" 106 | } 107 | }, 108 | "node_modules/debug": { 109 | "version": "2.6.9", 110 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 111 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 112 | "dependencies": { 113 | "ms": "2.0.0" 114 | } 115 | }, 116 | "node_modules/depd": { 117 | "version": "1.1.2", 118 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 119 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", 120 | "engines": { 121 | "node": ">= 0.6" 122 | } 123 | }, 124 | "node_modules/destroy": { 125 | "version": "1.0.4", 126 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 127 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 128 | }, 129 | "node_modules/ee-first": { 130 | "version": "1.1.1", 131 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 132 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 133 | }, 134 | "node_modules/encodeurl": { 135 | "version": "1.0.2", 136 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 137 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", 138 | "engines": { 139 | "node": ">= 0.8" 140 | } 141 | }, 142 | "node_modules/escape-html": { 143 | "version": "1.0.3", 144 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 145 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 146 | }, 147 | "node_modules/etag": { 148 | "version": "1.8.1", 149 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 150 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", 151 | "engines": { 152 | "node": ">= 0.6" 153 | } 154 | }, 155 | "node_modules/express": { 156 | "version": "4.17.1", 157 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 158 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 159 | "dependencies": { 160 | "accepts": "~1.3.7", 161 | "array-flatten": "1.1.1", 162 | "body-parser": "1.19.0", 163 | "content-disposition": "0.5.3", 164 | "content-type": "~1.0.4", 165 | "cookie": "0.4.0", 166 | "cookie-signature": "1.0.6", 167 | "debug": "2.6.9", 168 | "depd": "~1.1.2", 169 | "encodeurl": "~1.0.2", 170 | "escape-html": "~1.0.3", 171 | "etag": "~1.8.1", 172 | "finalhandler": "~1.1.2", 173 | "fresh": "0.5.2", 174 | "merge-descriptors": "1.0.1", 175 | "methods": "~1.1.2", 176 | "on-finished": "~2.3.0", 177 | "parseurl": "~1.3.3", 178 | "path-to-regexp": "0.1.7", 179 | "proxy-addr": "~2.0.5", 180 | "qs": "6.7.0", 181 | "range-parser": "~1.2.1", 182 | "safe-buffer": "5.1.2", 183 | "send": "0.17.1", 184 | "serve-static": "1.14.1", 185 | "setprototypeof": "1.1.1", 186 | "statuses": "~1.5.0", 187 | "type-is": "~1.6.18", 188 | "utils-merge": "1.0.1", 189 | "vary": "~1.1.2" 190 | }, 191 | "engines": { 192 | "node": ">= 0.10.0" 193 | } 194 | }, 195 | "node_modules/finalhandler": { 196 | "version": "1.1.2", 197 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 198 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 199 | "dependencies": { 200 | "debug": "2.6.9", 201 | "encodeurl": "~1.0.2", 202 | "escape-html": "~1.0.3", 203 | "on-finished": "~2.3.0", 204 | "parseurl": "~1.3.3", 205 | "statuses": "~1.5.0", 206 | "unpipe": "~1.0.0" 207 | }, 208 | "engines": { 209 | "node": ">= 0.8" 210 | } 211 | }, 212 | "node_modules/forwarded": { 213 | "version": "0.2.0", 214 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 215 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 216 | "engines": { 217 | "node": ">= 0.6" 218 | } 219 | }, 220 | "node_modules/fresh": { 221 | "version": "0.5.2", 222 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 223 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", 224 | "engines": { 225 | "node": ">= 0.6" 226 | } 227 | }, 228 | "node_modules/http": { 229 | "version": "0.0.1-security", 230 | "resolved": "https://registry.npmjs.org/http/-/http-0.0.1-security.tgz", 231 | "integrity": "sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==" 232 | }, 233 | "node_modules/http-errors": { 234 | "version": "1.7.2", 235 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 236 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 237 | "dependencies": { 238 | "depd": "~1.1.2", 239 | "inherits": "2.0.3", 240 | "setprototypeof": "1.1.1", 241 | "statuses": ">= 1.5.0 < 2", 242 | "toidentifier": "1.0.0" 243 | }, 244 | "engines": { 245 | "node": ">= 0.6" 246 | } 247 | }, 248 | "node_modules/iconv-lite": { 249 | "version": "0.4.24", 250 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 251 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 252 | "dependencies": { 253 | "safer-buffer": ">= 2.1.2 < 3" 254 | }, 255 | "engines": { 256 | "node": ">=0.10.0" 257 | } 258 | }, 259 | "node_modules/inherits": { 260 | "version": "2.0.3", 261 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 262 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 263 | }, 264 | "node_modules/ipaddr.js": { 265 | "version": "1.9.1", 266 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 267 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 268 | "engines": { 269 | "node": ">= 0.10" 270 | } 271 | }, 272 | "node_modules/media-typer": { 273 | "version": "0.3.0", 274 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 275 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", 276 | "engines": { 277 | "node": ">= 0.6" 278 | } 279 | }, 280 | "node_modules/merge-descriptors": { 281 | "version": "1.0.1", 282 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 283 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 284 | }, 285 | "node_modules/methods": { 286 | "version": "1.1.2", 287 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 288 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", 289 | "engines": { 290 | "node": ">= 0.6" 291 | } 292 | }, 293 | "node_modules/mime": { 294 | "version": "1.6.0", 295 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 296 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 297 | "bin": { 298 | "mime": "cli.js" 299 | }, 300 | "engines": { 301 | "node": ">=4" 302 | } 303 | }, 304 | "node_modules/mime-db": { 305 | "version": "1.50.0", 306 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", 307 | "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==", 308 | "engines": { 309 | "node": ">= 0.6" 310 | } 311 | }, 312 | "node_modules/mime-types": { 313 | "version": "2.1.33", 314 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", 315 | "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", 316 | "dependencies": { 317 | "mime-db": "1.50.0" 318 | }, 319 | "engines": { 320 | "node": ">= 0.6" 321 | } 322 | }, 323 | "node_modules/ms": { 324 | "version": "2.0.0", 325 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 326 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 327 | }, 328 | "node_modules/negotiator": { 329 | "version": "0.6.2", 330 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 331 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", 332 | "engines": { 333 | "node": ">= 0.6" 334 | } 335 | }, 336 | "node_modules/object-assign": { 337 | "version": "4.1.1", 338 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 339 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", 340 | "engines": { 341 | "node": ">=0.10.0" 342 | } 343 | }, 344 | "node_modules/on-finished": { 345 | "version": "2.3.0", 346 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 347 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 348 | "dependencies": { 349 | "ee-first": "1.1.1" 350 | }, 351 | "engines": { 352 | "node": ">= 0.8" 353 | } 354 | }, 355 | "node_modules/parseurl": { 356 | "version": "1.3.3", 357 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 358 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 359 | "engines": { 360 | "node": ">= 0.8" 361 | } 362 | }, 363 | "node_modules/path": { 364 | "version": "0.12.7", 365 | "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", 366 | "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", 367 | "dependencies": { 368 | "process": "^0.11.1", 369 | "util": "^0.10.3" 370 | } 371 | }, 372 | "node_modules/path-to-regexp": { 373 | "version": "0.1.7", 374 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 375 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 376 | }, 377 | "node_modules/process": { 378 | "version": "0.11.10", 379 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 380 | "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", 381 | "engines": { 382 | "node": ">= 0.6.0" 383 | } 384 | }, 385 | "node_modules/proxy-addr": { 386 | "version": "2.0.7", 387 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 388 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 389 | "dependencies": { 390 | "forwarded": "0.2.0", 391 | "ipaddr.js": "1.9.1" 392 | }, 393 | "engines": { 394 | "node": ">= 0.10" 395 | } 396 | }, 397 | "node_modules/qs": { 398 | "version": "6.7.0", 399 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 400 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", 401 | "engines": { 402 | "node": ">=0.6" 403 | } 404 | }, 405 | "node_modules/range-parser": { 406 | "version": "1.2.1", 407 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 408 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 409 | "engines": { 410 | "node": ">= 0.6" 411 | } 412 | }, 413 | "node_modules/raw-body": { 414 | "version": "2.4.0", 415 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 416 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 417 | "dependencies": { 418 | "bytes": "3.1.0", 419 | "http-errors": "1.7.2", 420 | "iconv-lite": "0.4.24", 421 | "unpipe": "1.0.0" 422 | }, 423 | "engines": { 424 | "node": ">= 0.8" 425 | } 426 | }, 427 | "node_modules/safe-buffer": { 428 | "version": "5.1.2", 429 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 430 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 431 | }, 432 | "node_modules/safer-buffer": { 433 | "version": "2.1.2", 434 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 435 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 436 | }, 437 | "node_modules/send": { 438 | "version": "0.17.1", 439 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 440 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 441 | "dependencies": { 442 | "debug": "2.6.9", 443 | "depd": "~1.1.2", 444 | "destroy": "~1.0.4", 445 | "encodeurl": "~1.0.2", 446 | "escape-html": "~1.0.3", 447 | "etag": "~1.8.1", 448 | "fresh": "0.5.2", 449 | "http-errors": "~1.7.2", 450 | "mime": "1.6.0", 451 | "ms": "2.1.1", 452 | "on-finished": "~2.3.0", 453 | "range-parser": "~1.2.1", 454 | "statuses": "~1.5.0" 455 | }, 456 | "engines": { 457 | "node": ">= 0.8.0" 458 | } 459 | }, 460 | "node_modules/send/node_modules/ms": { 461 | "version": "2.1.1", 462 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 463 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 464 | }, 465 | "node_modules/serve-static": { 466 | "version": "1.14.1", 467 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 468 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 469 | "dependencies": { 470 | "encodeurl": "~1.0.2", 471 | "escape-html": "~1.0.3", 472 | "parseurl": "~1.3.3", 473 | "send": "0.17.1" 474 | }, 475 | "engines": { 476 | "node": ">= 0.8.0" 477 | } 478 | }, 479 | "node_modules/setprototypeof": { 480 | "version": "1.1.1", 481 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 482 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 483 | }, 484 | "node_modules/statuses": { 485 | "version": "1.5.0", 486 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 487 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", 488 | "engines": { 489 | "node": ">= 0.6" 490 | } 491 | }, 492 | "node_modules/toidentifier": { 493 | "version": "1.0.0", 494 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 495 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", 496 | "engines": { 497 | "node": ">=0.6" 498 | } 499 | }, 500 | "node_modules/type-is": { 501 | "version": "1.6.18", 502 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 503 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 504 | "dependencies": { 505 | "media-typer": "0.3.0", 506 | "mime-types": "~2.1.24" 507 | }, 508 | "engines": { 509 | "node": ">= 0.6" 510 | } 511 | }, 512 | "node_modules/unpipe": { 513 | "version": "1.0.0", 514 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 515 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", 516 | "engines": { 517 | "node": ">= 0.8" 518 | } 519 | }, 520 | "node_modules/util": { 521 | "version": "0.10.4", 522 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", 523 | "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", 524 | "dependencies": { 525 | "inherits": "2.0.3" 526 | } 527 | }, 528 | "node_modules/utils-merge": { 529 | "version": "1.0.1", 530 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 531 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", 532 | "engines": { 533 | "node": ">= 0.4.0" 534 | } 535 | }, 536 | "node_modules/vary": { 537 | "version": "1.1.2", 538 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 539 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", 540 | "engines": { 541 | "node": ">= 0.8" 542 | } 543 | } 544 | }, 545 | "dependencies": { 546 | "accepts": { 547 | "version": "1.3.7", 548 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 549 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 550 | "requires": { 551 | "mime-types": "~2.1.24", 552 | "negotiator": "0.6.2" 553 | } 554 | }, 555 | "array-flatten": { 556 | "version": "1.1.1", 557 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 558 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 559 | }, 560 | "body-parser": { 561 | "version": "1.19.0", 562 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 563 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 564 | "requires": { 565 | "bytes": "3.1.0", 566 | "content-type": "~1.0.4", 567 | "debug": "2.6.9", 568 | "depd": "~1.1.2", 569 | "http-errors": "1.7.2", 570 | "iconv-lite": "0.4.24", 571 | "on-finished": "~2.3.0", 572 | "qs": "6.7.0", 573 | "raw-body": "2.4.0", 574 | "type-is": "~1.6.17" 575 | } 576 | }, 577 | "bytes": { 578 | "version": "3.1.0", 579 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 580 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 581 | }, 582 | "content-disposition": { 583 | "version": "0.5.3", 584 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 585 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 586 | "requires": { 587 | "safe-buffer": "5.1.2" 588 | } 589 | }, 590 | "content-type": { 591 | "version": "1.0.4", 592 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 593 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 594 | }, 595 | "cookie": { 596 | "version": "0.4.0", 597 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 598 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 599 | }, 600 | "cookie-signature": { 601 | "version": "1.0.6", 602 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 603 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 604 | }, 605 | "cors": { 606 | "version": "2.8.5", 607 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 608 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 609 | "requires": { 610 | "object-assign": "^4", 611 | "vary": "^1" 612 | } 613 | }, 614 | "debug": { 615 | "version": "2.6.9", 616 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 617 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 618 | "requires": { 619 | "ms": "2.0.0" 620 | } 621 | }, 622 | "depd": { 623 | "version": "1.1.2", 624 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 625 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 626 | }, 627 | "destroy": { 628 | "version": "1.0.4", 629 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 630 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 631 | }, 632 | "ee-first": { 633 | "version": "1.1.1", 634 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 635 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 636 | }, 637 | "encodeurl": { 638 | "version": "1.0.2", 639 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 640 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 641 | }, 642 | "escape-html": { 643 | "version": "1.0.3", 644 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 645 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 646 | }, 647 | "etag": { 648 | "version": "1.8.1", 649 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 650 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 651 | }, 652 | "express": { 653 | "version": "4.17.1", 654 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 655 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 656 | "requires": { 657 | "accepts": "~1.3.7", 658 | "array-flatten": "1.1.1", 659 | "body-parser": "1.19.0", 660 | "content-disposition": "0.5.3", 661 | "content-type": "~1.0.4", 662 | "cookie": "0.4.0", 663 | "cookie-signature": "1.0.6", 664 | "debug": "2.6.9", 665 | "depd": "~1.1.2", 666 | "encodeurl": "~1.0.2", 667 | "escape-html": "~1.0.3", 668 | "etag": "~1.8.1", 669 | "finalhandler": "~1.1.2", 670 | "fresh": "0.5.2", 671 | "merge-descriptors": "1.0.1", 672 | "methods": "~1.1.2", 673 | "on-finished": "~2.3.0", 674 | "parseurl": "~1.3.3", 675 | "path-to-regexp": "0.1.7", 676 | "proxy-addr": "~2.0.5", 677 | "qs": "6.7.0", 678 | "range-parser": "~1.2.1", 679 | "safe-buffer": "5.1.2", 680 | "send": "0.17.1", 681 | "serve-static": "1.14.1", 682 | "setprototypeof": "1.1.1", 683 | "statuses": "~1.5.0", 684 | "type-is": "~1.6.18", 685 | "utils-merge": "1.0.1", 686 | "vary": "~1.1.2" 687 | } 688 | }, 689 | "finalhandler": { 690 | "version": "1.1.2", 691 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 692 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 693 | "requires": { 694 | "debug": "2.6.9", 695 | "encodeurl": "~1.0.2", 696 | "escape-html": "~1.0.3", 697 | "on-finished": "~2.3.0", 698 | "parseurl": "~1.3.3", 699 | "statuses": "~1.5.0", 700 | "unpipe": "~1.0.0" 701 | } 702 | }, 703 | "forwarded": { 704 | "version": "0.2.0", 705 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 706 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" 707 | }, 708 | "fresh": { 709 | "version": "0.5.2", 710 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 711 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 712 | }, 713 | "http": { 714 | "version": "0.0.1-security", 715 | "resolved": "https://registry.npmjs.org/http/-/http-0.0.1-security.tgz", 716 | "integrity": "sha512-RnDvP10Ty9FxqOtPZuxtebw1j4L/WiqNMDtuc1YMH1XQm5TgDRaR1G9u8upL6KD1bXHSp9eSXo/ED+8Q7FAr+g==" 717 | }, 718 | "http-errors": { 719 | "version": "1.7.2", 720 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 721 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 722 | "requires": { 723 | "depd": "~1.1.2", 724 | "inherits": "2.0.3", 725 | "setprototypeof": "1.1.1", 726 | "statuses": ">= 1.5.0 < 2", 727 | "toidentifier": "1.0.0" 728 | } 729 | }, 730 | "iconv-lite": { 731 | "version": "0.4.24", 732 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 733 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 734 | "requires": { 735 | "safer-buffer": ">= 2.1.2 < 3" 736 | } 737 | }, 738 | "inherits": { 739 | "version": "2.0.3", 740 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 741 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 742 | }, 743 | "ipaddr.js": { 744 | "version": "1.9.1", 745 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 746 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 747 | }, 748 | "media-typer": { 749 | "version": "0.3.0", 750 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 751 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 752 | }, 753 | "merge-descriptors": { 754 | "version": "1.0.1", 755 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 756 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 757 | }, 758 | "methods": { 759 | "version": "1.1.2", 760 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 761 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 762 | }, 763 | "mime": { 764 | "version": "1.6.0", 765 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 766 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 767 | }, 768 | "mime-db": { 769 | "version": "1.50.0", 770 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", 771 | "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==" 772 | }, 773 | "mime-types": { 774 | "version": "2.1.33", 775 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", 776 | "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", 777 | "requires": { 778 | "mime-db": "1.50.0" 779 | } 780 | }, 781 | "ms": { 782 | "version": "2.0.0", 783 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 784 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 785 | }, 786 | "negotiator": { 787 | "version": "0.6.2", 788 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 789 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 790 | }, 791 | "object-assign": { 792 | "version": "4.1.1", 793 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 794 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 795 | }, 796 | "on-finished": { 797 | "version": "2.3.0", 798 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 799 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 800 | "requires": { 801 | "ee-first": "1.1.1" 802 | } 803 | }, 804 | "parseurl": { 805 | "version": "1.3.3", 806 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 807 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 808 | }, 809 | "path": { 810 | "version": "0.12.7", 811 | "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", 812 | "integrity": "sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8=", 813 | "requires": { 814 | "process": "^0.11.1", 815 | "util": "^0.10.3" 816 | } 817 | }, 818 | "path-to-regexp": { 819 | "version": "0.1.7", 820 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 821 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 822 | }, 823 | "process": { 824 | "version": "0.11.10", 825 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 826 | "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" 827 | }, 828 | "proxy-addr": { 829 | "version": "2.0.7", 830 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 831 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 832 | "requires": { 833 | "forwarded": "0.2.0", 834 | "ipaddr.js": "1.9.1" 835 | } 836 | }, 837 | "qs": { 838 | "version": "6.7.0", 839 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 840 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 841 | }, 842 | "range-parser": { 843 | "version": "1.2.1", 844 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 845 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 846 | }, 847 | "raw-body": { 848 | "version": "2.4.0", 849 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 850 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 851 | "requires": { 852 | "bytes": "3.1.0", 853 | "http-errors": "1.7.2", 854 | "iconv-lite": "0.4.24", 855 | "unpipe": "1.0.0" 856 | } 857 | }, 858 | "safe-buffer": { 859 | "version": "5.1.2", 860 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 861 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 862 | }, 863 | "safer-buffer": { 864 | "version": "2.1.2", 865 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 866 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 867 | }, 868 | "send": { 869 | "version": "0.17.1", 870 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 871 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 872 | "requires": { 873 | "debug": "2.6.9", 874 | "depd": "~1.1.2", 875 | "destroy": "~1.0.4", 876 | "encodeurl": "~1.0.2", 877 | "escape-html": "~1.0.3", 878 | "etag": "~1.8.1", 879 | "fresh": "0.5.2", 880 | "http-errors": "~1.7.2", 881 | "mime": "1.6.0", 882 | "ms": "2.1.1", 883 | "on-finished": "~2.3.0", 884 | "range-parser": "~1.2.1", 885 | "statuses": "~1.5.0" 886 | }, 887 | "dependencies": { 888 | "ms": { 889 | "version": "2.1.1", 890 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 891 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 892 | } 893 | } 894 | }, 895 | "serve-static": { 896 | "version": "1.14.1", 897 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 898 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 899 | "requires": { 900 | "encodeurl": "~1.0.2", 901 | "escape-html": "~1.0.3", 902 | "parseurl": "~1.3.3", 903 | "send": "0.17.1" 904 | } 905 | }, 906 | "setprototypeof": { 907 | "version": "1.1.1", 908 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 909 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 910 | }, 911 | "statuses": { 912 | "version": "1.5.0", 913 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 914 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 915 | }, 916 | "toidentifier": { 917 | "version": "1.0.0", 918 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 919 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 920 | }, 921 | "type-is": { 922 | "version": "1.6.18", 923 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 924 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 925 | "requires": { 926 | "media-typer": "0.3.0", 927 | "mime-types": "~2.1.24" 928 | } 929 | }, 930 | "unpipe": { 931 | "version": "1.0.0", 932 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 933 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 934 | }, 935 | "util": { 936 | "version": "0.10.4", 937 | "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", 938 | "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", 939 | "requires": { 940 | "inherits": "2.0.3" 941 | } 942 | }, 943 | "utils-merge": { 944 | "version": "1.0.1", 945 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 946 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 947 | }, 948 | "vary": { 949 | "version": "1.1.2", 950 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 951 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 952 | } 953 | } 954 | } 955 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "template-backend", 3 | "version": "1.0.0", 4 | "description": "template-backend", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/SOLAR-STORM-GAMING/template-backend.git" 12 | }, 13 | "author": "", 14 | "license": "ISC", 15 | "bugs": { 16 | "url": "https://github.com/SOLAR-STORM-GAMING/template-backend/issues" 17 | }, 18 | "homepage": "https://github.com/SOLAR-STORM-GAMING/template-backend#readme", 19 | "dependencies": { 20 | "body-parser": "^1.19.0", 21 | "cors": "^2.8.5", 22 | "express": "^4.17.1", 23 | "http": "0.0.1-security", 24 | "path": "^0.12.7" 25 | } 26 | } 27 | --------------------------------------------------------------------------------