Skip to content

Commit

Permalink
chore: update deps, migrate to vite
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Apr 30, 2024
1 parent 2bb331b commit 7b3872f
Show file tree
Hide file tree
Showing 9 changed files with 1,703 additions and 44 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,5 @@ temp/

# End of https://www.gitignore.io/api/node,linux,macos
public/assets/main.json

.vercel
5 changes: 0 additions & 5 deletions babel.config.js

This file was deleted.

70 changes: 70 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<meta name="description" content="Security Tools, Curated list of security tools for Hackers & Builders!">
<meta name="keywords"
content="Security Tools, Cloud Security, InfoSec, Information Security, Tools, DevOps, DevSecOps, Automation, Security Automation, Github, SecOps, Penetration Testing, Pentest, Vulnerability Assessment, Risk Analysis, Risk Assessment, CLI, Utilities, Hackers, Developers, Opensource, AWS, Azure, GCP, Security Hardening, Container Security, Docker, Kubernetes, CIS Benchmarks, Application Security, RBAC, Python, Bash, Shell Scripting, Golang, SIEM, CloudNative, Red Team, Blue Team">
<meta name="author" content="Madhu Akula">

<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<title>Security Tools | Curated list of security tools for Hackers & Builders!</title>
<style>
html {
--color-black: #0b0c10;
--color-grey: #1f2833;
--color-light-grey: #c5c6c7;
--color-light-cyan: #66fcf1;
--color-dark-cyan: #45a29e;

--yellow: hsl(48, 100%, 67%);
--yellow-dark: #e6bc11;
}

html,
body,
.footer,
strong {
background-color: var(--color-grey);
color: white;
}

a:hover {
color: var(--color-black);
}
</style>
</head>

<body>
<noscript>
<strong>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
<footer class="footer">
<div class="content has-text-centered">
<p>
&copy; <strong>Security Tools</strong> curated and
maintained by
<a href="https://madhuakula.com" target="_blank" style="color: var(--yellow);">Madhu Akula</a>
</p>
</div>
</footer>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-15752161-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());

gtag('config', 'UA-15752161-3');
</script>
<script type="module" src="/src/main.js"></script>
</body>
</html>
31 changes: 14 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,25 @@
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"prebuild": "cat tools/*.json | jq -c -s 'flatten' > public/assets/main.json",
"preserve": "cat tools/*.json | jq -c -s 'flatten' > public/assets/main.json"
"predev": "cat tools/*.json | jq -c -s 'flatten' > public/assets/main.json"
},
"dependencies": {
"axios": "^1.6.0",
"core-js": "^3.6.5",
"vue": "^3.0.0",
"fuse.js": "^6.0.0",
"lodash.debounce": "^4.0.8"
"axios": "^1.6.8",
"core-js": "^3.37.0",
"fuse.js": "^7.0.0",
"lodash.debounce": "^4.0.8",
"vue": "^3.4.26"
},
"devDependencies": {
"vue-template-compiler": "^2.6.12",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/compiler-sfc": "^3.2.45",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0"
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.1.1",
"eslint-plugin-vue": "^9.25.0",
"vite": "^5.2.10"
},
"eslintConfig": {
"root": true,
Expand Down
Loading

0 comments on commit 7b3872f

Please sign in to comment.