Initial commit

This commit is contained in:
David Négrier 2020-04-03 14:56:21 +02:00
commit 26b8412f3c
13 changed files with 4146 additions and 0 deletions

20
front/package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "workadventurefront",
"version": "1.0.0",
"main": "index.js",
"license": "AGPL",
"devDependencies": {
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"phaser": "^3.22.0"
},
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack"
}
}