Initial Parcel project

This commit is contained in:
Hippo 2021-12-27 17:39:14 +05:30
commit 14b1cd87b5
4 changed files with 4521 additions and 0 deletions

8
.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
node_modules/
dist/
# Geany project files
*.geany
# Parcel cache
.parcel-cache/

15
package.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "snipette-crowdfunding-site",
"version": "1.0.0",
"description": "Website for the Snipette Analog crowdfunding campaign",
"repository": "https://gitlab.com/snipettemag/snipette-crowdfunding-site",
"author": "Badri Sunderarajan <badri@snipettemag.com>",
"license": "MIT",
"scripts": {
"start": "parcel src/index.htm",
"build": "parcel build src/index.htm"
},
"devDependencies": {
"parcel": "^2.0.1"
}
}

10
src/index.htm Normal file
View file

@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>My First Parcel App</title>
</head>
<body>
<h1>Hello, peeps :)</h1>
</body>
</html>

4488
yarn.lock Normal file

File diff suppressed because it is too large Load diff