Initial Parcel project
This commit is contained in:
commit
14b1cd87b5
4 changed files with 4521 additions and 0 deletions
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
node_modules/
|
||||
dist/
|
||||
|
||||
# Geany project files
|
||||
*.geany
|
||||
|
||||
# Parcel cache
|
||||
.parcel-cache/
|
15
package.json
Normal file
15
package.json
Normal 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
10
src/index.htm
Normal 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>
|
Loading…
Reference in a new issue