diff --git a/package.json b/package.json new file mode 100644 index 0000000..42135a3 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "test-react-hello-world", + "version": "1.0.0", + "description": "A simple React Hello World application", + "main": "index.js", + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "dependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "5.0.1" + }, + "eslintConfig": { + "extends": [ + "react-app" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +}