-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.json
32 lines (32 loc) · 888 Bytes
/
Package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "your-react-app",
"version": "1.0.0",
"description": "Your React Application Description",
"main": "index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"react-router-dom": "^6.0.0",
// Add other dependencies here
},
"devDependencies": {
// Add development dependencies here
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
},
"eslintConfig": {
"extends": "react-app"
},
"proxy": "http://localhost:5000", // Optional: Set up a proxy for API requests
"homepage": ".",
"private": true
}