repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / examples / basic
Jacob Bolda  ·  2025-07-07

package.json

 1{
 2  "name": "vite-react",
 3  "private": true,
 4  "version": "0.0.0",
 5  "type": "module",
 6  "scripts": {
 7    "start": "vite --host 0.0.0.0",
 8    "build": "tsc && vite build",
 9    "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
10    "preview": "vite preview"
11  },
12  "dependencies": {
13    "react": "^19.1.0",
14    "react-dom": "^19.1.0",
15    "starfx": "file:../.."
16  },
17  "devDependencies": {
18    "@types/react": "^19.1.8",
19    "@types/react-dom": "^19.1.6",
20    "@typescript-eslint/eslint-plugin": "^5.57.1",
21    "@typescript-eslint/parser": "^5.57.1",
22    "@vitejs/plugin-react": "^4.0.0",
23    "eslint": "^8.38.0",
24    "eslint-plugin-react-hooks": "^4.6.0",
25    "eslint-plugin-react-refresh": "^0.3.4",
26    "typescript": "^5.3.2",
27    "vite": "^4.3.2"
28  }
29}