chore: init

This commit is contained in:
rizaldy 2024-01-30 23:47:14 +07:00
commit 4131ba6660
5 changed files with 2501 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.next
node_modules
.devbox

2463
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"minio": "^7.1.3",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xml2json": "^0.12.0"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1"
}
}

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

9
tailwind.config.js Normal file
View File

@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: ["./pages/**/*.js", "./components/**/*.js"],
theme: {
extend: {},
},
plugins: [],
};