mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-06 10:46:40 +00:00
* connect Dashboard to store * delete account button logs out... * buttons routing functional * refactor enhance to store * use an enum for routes and statuses * add statuses enum and enable EditProfile Form * conditional display of social links * Links type, * display alert on EditProfile form submit * refactor extract alert interface * update useForm hook to handle checkboxes * enable add education form * enable add experience form * add blank dev Profile on signup * enable delete credential button * delete account set profile to inactive * add isActive field to dev, checks for user existance on sign up to not overwrite inactive profiles
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "client",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.28",
|
|
"@fortawesome/free-brands-svg-icons": "^5.13.0",
|
|
"@fortawesome/free-regular-svg-icons": "^5.13.0",
|
|
"@fortawesome/free-solid-svg-icons": "^5.13.0",
|
|
"@fortawesome/react-fontawesome": "^0.1.9",
|
|
"@reduxjs/toolkit": "^1.3.6",
|
|
"@testing-library/jest-dom": "^4.2.4",
|
|
"@testing-library/react": "^9.3.2",
|
|
"@testing-library/user-event": "^7.1.2",
|
|
"@types/jest": "^24.0.0",
|
|
"@types/node": "^12.0.0",
|
|
"@types/react": "^16.9.0",
|
|
"@types/react-dom": "^16.9.0",
|
|
"@types/react-redux": "^7.1.8",
|
|
"@types/react-router-dom": "^5.1.5",
|
|
"cypress": "^4.5.0",
|
|
"firebase": "^7.14.3",
|
|
"moment": "^2.25.3",
|
|
"react": "^16.13.1",
|
|
"react-dom": "^16.13.1",
|
|
"react-google-button": "^0.7.1",
|
|
"react-redux": "^7.2.0",
|
|
"react-redux-firebase": "^3.4.0",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "3.4.1",
|
|
"redux-firestore": "^0.13.0",
|
|
"typescript": "^3.9.2"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"cypress": "cypress open",
|
|
"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"
|
|
]
|
|
}
|
|
}
|