namaste-react
Version:
a npm package to create a simple react app
30 lines (29 loc) • 618 B
JSON
{
"name": "react-app",
"version": "1.0.0",
"description": "A simple React application using Parcel as the bundler.",
"main": "src/index.js",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"keywords": [
"react",
"parcel",
"bundler",
"web"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"typescript": "^5.5.4"
}
}