From 51d264666effc51ee5254cc65a73b5061fe2ae53 Mon Sep 17 00:00:00 2001 From: user-admin Date: Sat, 31 Jan 2026 02:45:32 +0000 Subject: [PATCH] Add package.json --- package.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 package.json 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" + ] + } +}