├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── babel.config.js ├── commitlint.config.js ├── electron └── main.ts ├── index.html ├── jest.config.js ├── package.json ├── src ├── App.tsx ├── components │ ├── Button │ │ ├── Button.spec.tsx │ │ └── index.tsx │ └── Greetings │ │ ├── Greetings.spec.tsx │ │ ├── fileupload.tsx │ │ ├── index.tsx │ │ └── styles.ts └── styles │ └── GlobalStyle.ts ├── tests └── setupTests.ts ├── tsconfig.json ├── webpack ├── electron.webpack.js └── react.webpack.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/electron/main.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Button/Button.spec.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Greetings/Greetings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Greetings/Greetings.spec.tsx -------------------------------------------------------------------------------- /src/components/Greetings/fileupload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Greetings/fileupload.tsx -------------------------------------------------------------------------------- /src/components/Greetings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Greetings/index.tsx -------------------------------------------------------------------------------- /src/components/Greetings/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/components/Greetings/styles.ts -------------------------------------------------------------------------------- /src/styles/GlobalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/src/styles/GlobalStyle.ts -------------------------------------------------------------------------------- /tests/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/extend-expect' 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/electron.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/webpack/electron.webpack.js -------------------------------------------------------------------------------- /webpack/react.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/webpack/react.webpack.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh-Topi/resu-parse/HEAD/yarn.lock --------------------------------------------------------------------------------