|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "ps-flux",
- "version": "0.1.0",
- "private": true,
- "dependencies": {
- "@testing-library/jest-dom": "^5.15.0",
- "@testing-library/react": "^11.2.7",
- "@testing-library/user-event": "^12.8.3",
- "bootstrap": "^4.3.1",
- "flux": "^3.1.3",
- "react": "^16.8.6",
- "react-dom": "^16.8.6",
- "react-router-dom": "^5.0.0",
- "react-scripts": "^3.0.1",
- "react-toastify": "^5.1.1",
- "web-vitals": "^1.1.2"
- },
- "scripts": {
- "start": "run-p start:dev start:api",
- "start:dev": "cross-env REACT_APP_API_URL=http://localhost:3001 react-scripts start",
- "prestart:api": "node tools/createMockDb.js",
- "start:api": "node tools/apiServer.js",
- "build": "react-scripts build",
- "test": "react-scripts test",
- "eject": "react-scripts eject"
- },
- "eslintConfig": {
- "extends": [
- "react-app",
- "react-app/jest"
- ]
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "devDependencies": {
- "cross-env": "^5.2.0",
- "json-server": "^0.15.0",
- "npm-run-all": "^4.1.5"
- }
- }
|