initial commit

This commit is contained in:
Alex Bates 2021-01-05 13:27:56 +00:00
commit 8f76f0a1b5
No known key found for this signature in database
GPG Key ID: 7531C5E1D6B1CA9A
3 changed files with 25 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/package-lock.json
/node_modules
/dist
/.cache

10
package.json Normal file
View File

@ -0,0 +1,10 @@
{
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"dependencies": {},
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
}

11
src/index.html Normal file
View File

@ -0,0 +1,11 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Paper Mario Reverse Engineering</title>
</head>
<body>
Hello world!
</body>
</html>