Added testing framework and updated dependencies.

This commit is contained in:
2020-12-15 20:32:30 +01:00
parent 214daeb851
commit 07b3831d31
5 changed files with 5501 additions and 1155 deletions

View File

@@ -2,15 +2,19 @@
A browser game inspired by Breach Protocol from Cyberpunk 2077.
## Run in development mode
## Building the project
```
// run once to install all dependencies
npm i
// run all tests
npm run test
// run the server for local development
npm run serve
```
### Build for production
```
// build for production
npm run build
```