Initial Commit

This commit is contained in:
2019-09-28 01:00:21 +02:00
commit 1ec1615506
9 changed files with 3058 additions and 0 deletions

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "game-of-life",
"version": "1.0.0",
"main": "index.js",
"repository": "https://git.delta-wings.net/Avior/game-of-life.js",
"author": "Avior <florian.bouillon@delta-wings.net>",
"license": "MIT",
"private": false,
"scripts": {
"watch": "webpack --progress --profile --colors --watch --mode='development'",
"build:prod": "webpack --progress --profile --colors --mode='production'",
"build:dev": "webpack --progress --profile --colors --mode='development'"
},
"dependencies": {
"ts-loader": "^6.1.2",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}