-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .eslintrc.cjs 21 additions, 0 deletions.eslintrc.cjs
- .gitignore 24 additions, 0 deletions.gitignore
- README.md 8 additions, 0 deletionsREADME.md
- index.html 13 additions, 0 deletionsindex.html
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 27 additions, 0 deletionspackage.json
- public/vite.svg 2 additions, 0 deletionspublic/vite.svg
- src/App.jsx 25 additions, 0 deletionssrc/App.jsx
- src/components/Blog.jsx 8 additions, 0 deletionssrc/components/Blog.jsx
- src/main.jsx 5 additions, 0 deletionssrc/main.jsx
- src/services/blogs.js 10 additions, 0 deletionssrc/services/blogs.js
- vite.config.js 7 additions, 0 deletionsvite.config.js
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
package.json
0 → 100644
{ | ||
"name": "bloglist-frontend", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"axios": "^1.4.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.15", | ||
"@types/react-dom": "^18.2.7", | ||
"@vitejs/plugin-react": "^4.0.3", | ||
"eslint": "^8.45.0", | ||
"eslint-plugin-react": "^7.32.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-refresh": "^0.4.3", | ||
"vite": "^4.4.5" | ||
} | ||
} |
public/vite.svg
0 → 100644
src/App.jsx
0 → 100644
src/components/Blog.jsx
0 → 100644
src/main.jsx
0 → 100644
src/services/blogs.js
0 → 100644
vite.config.js
0 → 100644
Please register or sign in to comment