Initial commit
parents
No related branches found
No related tags found
Showing
- .eslintrc.cjs 15 additions, 0 deletions.eslintrc.cjs
- .gitignore 24 additions, 0 deletions.gitignore
- index.html 12 additions, 0 deletionsindex.html
- package.json 31 additions, 0 deletionspackage.json
- src/App.css 0 additions, 0 deletionssrc/App.css
- src/App.jsx 25 additions, 0 deletionssrc/App.jsx
- src/index.css 0 additions, 0 deletionssrc/index.css
- src/main.jsx 10 additions, 0 deletionssrc/main.jsx
- vite.config.js 12 additions, 0 deletionsvite.config.js
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
index.html
0 → 100644
package.json
0 → 100644
{ | ||
"name": "fdt", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"dev:install": "npm run build && mkdir -p ~/.fslgui/fdt && cp -r dist/* ~/.fslgui/fdt", | ||
"build": "vite build", | ||
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview" | ||
}, | ||
"dependencies": { | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"@emotion/react": "^11.11.0", | ||
"@emotion/styled": "^11.11.0", | ||
"@fontsource/roboto": "^5.0.1", | ||
"@mui/icons-material": "^5.11.16" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.0.28", | ||
"@types/react-dom": "^18.0.11", | ||
"@vitejs/plugin-react": "^4.0.0", | ||
"eslint": "^8.38.0", | ||
"eslint-plugin-react": "^7.32.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-refresh": "^0.3.4", | ||
"vite": "^4.3.2" | ||
} | ||
} |
src/App.css
0 → 100644
src/App.jsx
0 → 100644
src/index.css
0 → 100644
src/main.jsx
0 → 100644
vite.config.js
0 → 100644
Please register or sign in to comment