Initial commit

This commit is contained in:
Jonas Lochmann 2020-02-03 01:00:00 +01:00
commit ecb3d14d2a
No known key found for this signature in database
GPG key ID: 8B8C9AEE10FA5B36
25 changed files with 8670 additions and 0 deletions

17
package.json Normal file
View file

@ -0,0 +1,17 @@
{
"dependencies": {
"parcel-bundler": "^1.12.4"
},
"scripts": {
"develop": "parcel src/index.html",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"build": "tslint --project . && rimraf dist && parcel build src/index.html --no-source-maps --no-minify --no-cache --public-url ."
},
"devDependencies": {
"rimraf": "^3.0.1",
"tslint": "^6.0.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.5"
}
}