1
0
Fork 0
Learning-GoLang/simple-blog/webapp/package.json

38 lines
799 B
JSON
Raw Normal View History

2024-07-19 20:13:45 +00:00
{
"name": "simple-blog",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "~1.2.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-scripts": "~5.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "~5.16.5",
"@testing-library/react": "~13.4.0",
"@testing-library/user-event": "~14.4.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
}
}