feat: initial commit and template import

This commit is contained in:
Amadeu Jose Andrade Junior
2025-02-05 16:40:00 -03:00
commit 8123a94fcf
37 changed files with 12414 additions and 0 deletions

70
package.json Normal file
View File

@@ -0,0 +1,70 @@
{
"name": "viterjs-template",
"version": "1.1.7",
"description": "React + Vite + Redux + MuI + axios + RRD + Prettier => Boilerplate",
"license": "MIT",
"author": "emrecil <info.emrecil@gmail.com>",
"keywords": [
"react",
"boilerplate",
"javaScript",
"starter",
"vite",
"redux",
"material-ui",
"axios",
"rrd",
"prettier"
],
"repository": {
"type": "git",
"url": "https://github.com/emre-cil/viterjs-template.git"
},
"bugs": {
"url": "https://github.com/emre-cil/viterjs-template/issues"
},
"homepage": "https://github.com/emre-cil/viterjs-template#readme",
"scripts": {
"dev": "vite --open",
"start": "vite --open",
"host": "vite --open --host",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write",
"format+lint": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write && eslint src --ext .js,.jsx,.ts,.tsx --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cover": "vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@reduxjs/toolkit": "^2.2.1",
"axios": "^1.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}