Browse Source

Initial website commit

pull/1/head
Luke Childs 6 years ago
parent
commit
c4d12b095a
  1. 9
      website/.gitignore
  2. 5
      website/index.html
  3. 1
      website/index.js
  4. 17
      website/package.json
  5. 4971
      website/yarn.lock

9
website/.gitignore

@ -0,0 +1,9 @@
!yarn.lock
.cache
dist
node_modules
.nyc_output
npm-debug.log
package-lock.json
yarn-error.log

5
website/index.html

@ -0,0 +1,5 @@
<html>
<body>
<script async src="./index.js"></script>
</body>
</html>

1
website/index.js

@ -0,0 +1 @@
console.log('hello world');

17
website/package.json

@ -0,0 +1,17 @@
{
"name": "doge-seed-website",
"version": "1.0.0",
"description": "Website for lukechilds/doge-seed",
"main": "index.html",
"repository": "lukechilds/doge-seed",
"author": "Luke Childs <lukechilds123@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel index.html",
"build": "parcel build index.html"
},
"devDependencies": {
"parcel-bundler": "^1.11.0"
}
}

4971
website/yarn.lock

File diff suppressed because it is too large
Loading…
Cancel
Save