Initial Setup for Nile

This commit is contained in:
Dunemask 2022-09-09 16:23:24 -04:00
commit ca9280f324
36 changed files with 2668 additions and 0 deletions

33
package.json Normal file
View file

@ -0,0 +1,33 @@
{
"name": "nile",
"version": "0.0.1",
"description": "Delta for all things Dunemask",
"license": "LGPL-2.1-only",
"author": "Dunemask",
"type": "module",
"scripts": {
"start": "vite --host",
"build:react": "vite build",
"lint": "npx prettier -w src/ index.html vite.config.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@vitejs/plugin-react": "2.1.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"vite": "3.1.0"
}
}