Skip to content

Commit

Permalink
v2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
imyanice committed May 15, 2024
1 parent ab53601 commit e4d2cbd
Show file tree
Hide file tree
Showing 108 changed files with 10,425 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
out
dist-ssr
*.local
.next
.yarn

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
yarn.lock
package-lock.json
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src-tauri/target/
.next
12 changes: 12 additions & 0 deletions .prettierrc.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/** @type {import("prettier").Config} */
const config = {
trailingComma: "all",
tabWidth: 4,
semi: true,
singleQuote: false,
jsxSingleQuote: false,
bracketSpacing: true,
bracketSameLine: true,
};

export default config;
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
}
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
7 changes: 7 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
output: "export",
};

module.exports = nextConfig;
33 changes: 33 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "e-z-uploader",
"private": true,
"version": "2.0.0",
"author": "imyanice",
"scripts": {
"dev": "next dev -p 1420",
"build": "next build",
"tauri": "tauri",
"lint": "prettier --write",
"lint-dot": "prettier . -w"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@tauri-apps/api": "^1.5.3",
"flowbite": "^2.2.1",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-scrollbar": "^3.0.5",
"tauri-plugin-autostart-api": "https://github.com/tauri-apps/tauri-plugin-autostart"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.9",
"@types/node": "^20.11.13",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit e4d2cbd

Please sign in to comment.