diff --git a/README.md b/README.md
index 897dc836..ada8dcf8 100644
--- a/README.md
+++ b/README.md
@@ -1,44 +1,23 @@
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+# Phantasmal Quest Editor
-## Available Scripts
+Phantasmal Quest Editor is an editor for Phantasy Star Online quests. This project is in a very early stage of development.
-In the project directory, you can run:
+## For Developers
-### `npm start`
+React is used for the frontend, MobX is used for state management and THREE.js for 3D graphics.
-Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
+### Getting Started
-The page will reload if you make edits.
-You will also see any lint errors in the console.
+1. Install Yarn ([https://yarnpkg.com/](https://yarnpkg.com/))
+2. cd to the project directory
+3. Launch server on [http://localhost:3000/](http://localhost:3000/) with `yarn start`
+4. src/index.tsx is the application's entry point
-### `npm test`
+### Tests
-Launches the test runner in the interactive watch mode.
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+Run tests with `yarn test`.
-### `npm run build`
+### Production Build
-Builds the app for production to the `build` folder.
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
+1. Change the homepage field in package.json if you don't want to deploy to /
+3. Build with `yarn build`
diff --git a/package.json b/package.json
index 50992f1f..5d5e8a0e 100644
--- a/package.json
+++ b/package.json
@@ -3,13 +3,22 @@
"version": "0.1.0",
"private": true,
"dependencies": {
+ "@blueprintjs/core": "^3.15.1",
"@types/jest": "24.0.13",
+ "@types/lodash": "^4.14.132",
"@types/node": "12.0.2",
"@types/react": "16.8.18",
"@types/react-dom": "16.8.4",
+ "@types/text-encoding": "^0.0.35",
+ "lodash": "^4.17.11",
+ "mobx": "^5.9.4",
+ "mobx-react": "^5.4.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
+ "text-encoding": "^0.7.0",
+ "three": "^0.104.0",
+ "three-orbit-controls": "^82.1.0",
"typescript": "3.4.5"
},
"scripts": {
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index a11777cc..00000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/index.html b/public/index.html
index dd1ccfd4..1dcf0c39 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,38 +1,12 @@
-
-