repos / starfx

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

starfx / examples / parcel-react
Jacob Bolda  ·  2025-07-07

package.json

 1{
 2  "name": "starfx-parcel",
 3  "source": "src/index.html",
 4  "scripts": {
 5    "start": "parcel --host 0.0.0.0",
 6    "build": "parcel build"
 7  },
 8  "browserslist": "> 0.5%, last 2 versions, not dead",
 9  "@parcel/resolver-default": {
10    "packageExports": true
11  },
12  "alias": {
13    "node:process": false
14  },
15  "devDependencies": {
16    "parcel": "^2.15.4",
17    "process": "^0.11.10"
18  },
19  "dependencies": {
20    "react": "^19.1.0",
21    "react-dom": "^19.1.0",
22    "starfx": "file:../.."
23  }
24}