Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianJHughes committed Aug 18, 2018
0 parents commit c6c6719
Show file tree
Hide file tree
Showing 6 changed files with 4,350 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
src/magnolia-template-ramseyinhouse/assets/dist
.settings*
*.DS_Store
*.sublime-*
.idea*
target*
.classpath
.project
*.iml
node*
.vscode/
yarn-error.log
npm-debug.log
.sass-cache
.stylelintcache
dist/
.cache
Empty file added index.css
Empty file.
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>JS13k Video Game</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="index.css">
</head>

<body>
<script src="index.js"></script>
</body>

</html>
Empty file added index.js
Empty file.
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "js13kgames",
"version": "1.0.0",
"author": "Christian Hughes <[email protected]>",
"contributors": [
{
"name": "Samuel Schumacher <[email protected]>"
},
{
"name": "Christian Hughes <[email protected]>"
}
],
"license": "MIT",
"devDependencies": {
"husky": "^0.14.3",
"kontra": "^4.0.1",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
},
"scripts": {
"build": "parcel build index.html",
"watch": "parcel index.html",
"precommit": "pretty-quick --staged"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true
}
}
Loading

0 comments on commit c6c6719

Please sign in to comment.