Add package.json

This commit is contained in:
user-admin 2026-01-31 02:45:32 +00:00
parent 8365711dce
commit 51d264666e
1 changed files with 34 additions and 0 deletions

34
package.json Normal file
View File

@ -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"
]
}
}