**Describe the bug** When trying to run the project in development mode using NodeJS version `18.7.0`, the app doesn't compile & throws an error message. **Steps to reproduce:** - Having [Node's version 18.7.0](https://nodejs.org/en/blog/release/v18.7.0/) installed. - navigate to the project's root & install the project's dependencies with the following command: `npm i`. - try starting the project with `npm run start`. **Expected results:** It was expected to compile in dev mode & launch React's an app in the browser like in the screenshot below: <img width="1111" alt="Screenshot 2022-11-23 at 3 32 09 PM" src="https://user-images.githubusercontent.com/32891808/203572826-63f287fd-66c8-4243-b2b0-a8320c72b889.png"> **Actual results:** It doesn't compile & it throws the following error instead: ``` [Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './lib/tokenize' is not defined by "exports" in the package.jso] ``` **Workaround: 1** - run the following commands: ``` npm i -D postcss@latest export NODE_OPTIONS=--openssl-legacy-provider npm install ``` **Workaround: 2** - uninstall NodeJs `18.7.0` version. - install NodeJs `19.1.0` version. Start the project with the command: `npm run start`. The app should compile now.