Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
PandeCode committed Mar 3, 2023
0 parents commit 495ce00
Show file tree
Hide file tree
Showing 42 changed files with 9,049 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "anode-0"
}
}
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
dev-dist
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.firebase
1 change: 1 addition & 0 deletions .prettierrc
12 changes: 12 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"hosting": {
"public": "dist",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Use nodes to search for similar anime."
/>
<title>Anode</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/manifest.webmanifest " />
<link rel="theme-color" href="#209CEE" />
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
25 changes: 25 additions & 0 deletions manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Anode",
"short_name": "Anode",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"lang": "en",
"scope": "/",
"description": "calm mental health",
"theme_color": "#55FF55",
"icons": [
{ "src": " favicon-32x32.png", "sizes": "32x32", "type": "image/png" },
{ "src": " favicon-16x16.png", "sizes": "16x16", "type": "image/png" },
{
"src": "android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
]
}
47 changes: 47 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "anode",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@emotion/react": "^11.10.5",
"@mantine/carousel": "^5.10.3",
"@mantine/core": "^5.10.3",
"@mantine/dates": "^5.10.3",
"@mantine/dropzone": "^5.10.3",
"@mantine/ds": "^5.10.3",
"@mantine/form": "^5.10.3",
"@mantine/hooks": "^5.10.3",
"@mantine/modals": "^5.10.3",
"@mantine/notifications": "^5.10.3",
"@mantine/nprogress": "^5.10.3",
"@mantine/prism": "^5.10.3",
"@mantine/spotlight": "^5.10.3",
"@mantine/tiptap": "^5.10.3",
"@tabler/icons": "1.119.0",
"@tiptap/extension-link": "2.0.0-beta.217",
"@tiptap/react": "2.0.0-beta.217",
"@tiptap/starter-kit": "2.0.0-beta.217",
"@types/d3": "^7.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"d3": "^7.8.2",
"dayjs": "^1.11.7",
"embla-carousel-react": "^7.0.9",
"firebase": "^9.17.1",
"lottie-react": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-pwa": "^0.14.4"
}
}
Loading

0 comments on commit 495ce00

Please sign in to comment.