# richman2020 **Repository Path**: jjhoc/richman2020 ## Basic Information - **Project Name**: richman2020 - **Description**: The early version of richman 2020 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Game Templates Nuxt + PixiJS DICE Richman 2020 reworks Currently is only limited to testing on the frontend only. ### Getting started with Nuxt - Let's start by adding a `package.json` with the following dependencies: ```json { "name": "nuxt-static", "version": "1.0.0", "private": true, "scripts": { "dev": "nuxt", "build": "nuxt build", "start": "nuxt start", "generate": "nuxt generate", }, "dependencies": { "cross-env": "^5.2.0", "nuxt": "^2.0.0" }, "devDependencies": { "nodemon": "^1.11.0" } } ``` - Create a `pages` folder with an `index.vue` file with the following code: ```