-
- Downloads
Initial commit
Showing
- .env 1 addition, 0 deletions.env
- jsconfig.json 9 additions, 0 deletionsjsconfig.json
- package-lock.json 1064 additions, 61 deletionspackage-lock.json
- package.json 83 additions, 5 deletionspackage.json
- public/index.html 3 additions, 2 deletionspublic/index.html
- src/App.css 0 additions, 38 deletionssrc/App.css
- src/App.js 0 additions, 26 deletionssrc/App.js
- src/App.jsx 69 additions, 0 deletionssrc/App.jsx
- src/components/Footer.jsx 153 additions, 0 deletionssrc/components/Footer.jsx
- src/components/HomeHero.jsx 41 additions, 0 deletionssrc/components/HomeHero.jsx
- src/components/Navbar.jsx 66 additions, 0 deletionssrc/components/Navbar.jsx
- src/config.js 3 additions, 0 deletionssrc/config.js
- src/index.css 2 additions, 7 deletionssrc/index.css
- src/pages/ForPress.jsx 11 additions, 0 deletionssrc/pages/ForPress.jsx
- src/pages/ForVisitors.jsx 11 additions, 0 deletionssrc/pages/ForVisitors.jsx
- src/pages/Home.jsx 27 additions, 0 deletionssrc/pages/Home.jsx
- src/pages/Program.jsx 11 additions, 0 deletionssrc/pages/Program.jsx
.env
0 → 100644
jsconfig.json
0 → 100644
This diff is collapsed.
... | @@ -3,21 +3,82 @@ | ... | @@ -3,21 +3,82 @@ |
"version": "0.1.0", | "version": "0.1.0", | ||
"private": true, | "private": true, | ||
"dependencies": { | "dependencies": { | ||
"@testing-library/jest-dom": "^4.2.4", | "@sentry/react": "^5.23.0", | ||
"@testing-library/react": "^9.5.0", | |||
"@testing-library/user-event": "^7.2.1", | "@testing-library/user-event": "^7.2.1", | ||
"classnames": "^2.2.6", | |||
"react": "^16.13.1", | "react": "^16.13.1", | ||
"react-device-detect": "^1.13.1", | |||
"react-dom": "^16.13.1", | "react-dom": "^16.13.1", | ||
"react-modal": "^3.11.2", | |||
"react-router-dom": "^5.2.0", | |||
"react-scripts": "3.4.3" | "react-scripts": "3.4.3" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"start": "react-scripts start", | "start": "react-scripts start", | ||
"build": "react-scripts build", | "build": "react-scripts build", | ||
"test": "react-scripts test", | "test": "react-scripts test --env=jsdom-fourteen", | ||
"eject": "react-scripts eject" | "eject": "react-scripts eject", | ||
"lint": "eslint --cache 'src/**/*.{js,jsx}'", | |||
"lint:fix": "eslint --cache --fix 'src/**/*.{js,jsx}'" | |||
}, | }, | ||
"eslintConfig": { | "eslintConfig": { | ||
"extends": "react-app" | "extends": [ | ||
"react-app", | |||
"plugin:prettier/recommended", | |||
"plugin:testing-library/recommended", | |||
"plugin:jest-dom/recommended" | |||
], | |||
"plugins": [ | |||
"simple-import-sort", | |||
"testing-library", | |||
"jest-dom" | |||
], | |||
"rules": { | |||
"sort-imports": "off", | |||
"prettier/prettier": "warn", | |||
"react/no-unknown-property": [ | |||
1 | |||
], | |||
"simple-import-sort/sort": [ | |||
"warn", | |||
{ | |||
"groups": [ | |||
[ | |||
"^react", | |||
"^@?\\w" | |||
], | |||
[ | |||
"^(components|containers|pages|utils)(/.*|$)" | |||
], | |||
[ | |||
"^(test-utils)(/.*|$)" | |||
], | |||
[ | |||
"^\\u0000" | |||
], | |||
[ | |||
"^\\.\\.(?!/?$)", | |||
"^\\.\\./?$" | |||
], | |||
[ | |||
"^\\./(?=.*/)(?!/?$)", | |||
"^\\.(?!/?$)", | |||
"^\\./?$" | |||
], | |||
[ | |||
"^.+\\.s?css$" | |||
] | |||
] | |||
} | |||
], | |||
"testing-library/await-async-query": "error", | |||
"testing-library/no-await-sync-query": "error", | |||
"testing-library/no-debug": "warn", | |||
"jest-dom/prefer-checked": "error", | |||
"jest-dom/prefer-enabled-disabled": "error", | |||
"jest-dom/prefer-required": "error", | |||
"jest-dom/prefer-to-have-attribute": "error" | |||
} | |||
}, | }, | ||
"browserslist": { | "browserslist": { | ||
"production": [ | "production": [ | ||
... | @@ -30,5 +91,22 @@ | ... | @@ -30,5 +91,22 @@ |
"last 1 firefox version", | "last 1 firefox version", | ||
"last 1 safari version" | "last 1 safari version" | ||
] | ] | ||
}, | |||
"devDependencies": { | |||
"@testing-library/jest-dom": "^4.2.4", | |||
"@testing-library/react": "^9.5.0", | |||
"babel-core": "^6.26.3", | |||
"babel-eslint": "^10.1.0", | |||
"eslint": "^6.6.0", | |||
"eslint-config-airbnb": "^18.2.0", | |||
"eslint-config-prettier": "^6.11.0", | |||
"eslint-plugin-import": "^2.22.0", | |||
"eslint-plugin-jest-dom": "^3.2.3", | |||
"eslint-plugin-jsx-a11y": "^6.3.1", | |||
"eslint-plugin-prettier": "^3.1.4", | |||
"eslint-plugin-react": "^7.20.6", | |||
"eslint-plugin-simple-import-sort": "^5.0.3", | |||
"eslint-plugin-testing-library": "^3.8.0", | |||
"prettier": "^2.1.1" | |||
} | } | ||
} | } |
src/App.css
deleted
100644 → 0
src/App.js
deleted
100644 → 0
src/App.jsx
0 → 100644
src/components/Footer.jsx
0 → 100644
src/components/HomeHero.jsx
0 → 100644
src/components/Navbar.jsx
0 → 100644
src/config.js
0 → 100644
src/pages/ForPress.jsx
0 → 100644
src/pages/ForVisitors.jsx
0 → 100644
src/pages/Home.jsx
0 → 100644
src/pages/Program.jsx
0 → 100644
Please register or sign in to comment