CoolFace
Apppublic

pearlselvan/testreact

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
package.json40 linesDownload Raw Back to root
1{2  "name": "hello-world-react",3  "version": "1.0.0",4  "private": true,5  "dependencies": {6    "react": "^18.2.0",7    "react-dom": "^18.2.0",8    "react-scripts": "5.0.1",9    "typescript": "^4.9.5",10    "web-vitals": "^3.0.0"11  },12  "scripts": {13    "start": "react-scripts start",14    "build": "react-scripts build",15    "test": "react-scripts test",16    "eject": "react-scripts eject"17  },18  "eslintConfig": {19    "extends": [20      "react-app"21    ]22  },23  "browserslist": {24    "production": [25      ">0.2%",26      "not dead",27      "not op_mini all"28    ],29    "development": [30      "last 1 chrome version",31      "last 1 firefox version",32      "last 1 safari version"33    ]34  },35  "devDependencies": {36    "@types/react": "^18.2.0",37    "@types/react-dom": "^18.2.0"38  }39}40