Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wyvern800/twinkinfos-front
Need help with your twink
https://github.com/wyvern800/twinkinfos-front
Last synced: 14 days ago
JSON representation
Need help with your twink
- Host: GitHub
- URL: https://github.com/wyvern800/twinkinfos-front
- Owner: wyvern800
- License: mit
- Created: 2023-11-05T04:41:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-14T03:12:54.000Z (about 1 year ago)
- Last Synced: 2024-11-02T08:08:20.316Z (2 months ago)
- Language: TypeScript
- Homepage: https://wowtwinks.info
- Size: 987 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# base-app-react
A basic react app in typescript containing bunch of pre-configured libraries and stuff to easily start your own app with.package.json
```bash
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4",
"prettier": "^2.3.2"
}
```