Skip to content

Commit

Permalink
Use double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
megbuch committed Mar 16, 2024
1 parent 42d090d commit 4552202
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
50 changes: 26 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
{
'name': 'portfolio-v3',
'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'
"name": "portfolio-v3",
"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",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
'dependencies': {
'react': '^18.2.0',
'react-dom': '^18.2.0',
'react-icons': '^5.0.1',
'react-router-dom': '^6.22.2'
"dependencies": {
"react": "^18.2.",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.2"
},
'devDependencies': {
'@types/react': '^18.2.56',
'@types/react-dom': '^18.2.19',
'@vitejs/plugin-react': '^4.2.1',
'eslint': '^8.56.0',
'eslint-plugin-react': '^7.33.2',
'eslint-plugin-react-hooks': '^4.6.0',
'eslint-plugin-react-refresh': '^0.4.5',
'sass': '^1.71.1',
'vite': '^5.1.4'
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"sass": "^1.71.1",
"vite": "^5.1.4"
}
}
1 change: 1 addition & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: '/portfolio-v3/',
})

0 comments on commit 4552202

Please sign in to comment.