├── .DS_Store ├── .gitignore ├── 12-Rules-to-Learn-to-Code-eBook-Updated-26.11.18.pdf ├── DOM ├── css │ └── master.css ├── index.html └── javascript │ └── main.js ├── Dicee Challenge ├── .DS_Store ├── dicee.html ├── images │ ├── dice1.png │ ├── dice2.png │ ├── dice3.png │ ├── dice4.png │ ├── dice5.png │ └── dice6.png ├── index.js └── styles.css ├── Drum Kit ├── .DS_Store ├── images │ ├── crash.png │ ├── kick.png │ ├── snare.png │ ├── tom1.png │ ├── tom2.png │ ├── tom3.png │ └── tom4.png ├── index.html ├── index.js ├── sounds │ ├── crash.mp3 │ ├── kick-bass.mp3 │ ├── snare.mp3 │ ├── tom-1.mp3 │ ├── tom-2.mp3 │ ├── tom-3.mp3 │ └── tom-4.mp3 └── styles.css ├── README.md ├── Secrets - Starting Code ├── .DS_Store ├── app.js ├── package-lock.json ├── package.json ├── public │ └── css │ │ └── styles.css └── views │ ├── home.ejs │ ├── login.ejs │ ├── partials │ ├── footer.ejs │ └── header.ejs │ ├── register.ejs │ ├── secrets.ejs │ └── submit.ejs ├── Simon Game Challenge Starting Files ├── .DS_Store ├── game.js ├── index.html ├── sounds │ ├── blue.mp3 │ ├── green.mp3 │ ├── red.mp3 │ ├── wrong.mp3 │ └── yellow.mp3 └── styles.css ├── TinDog-Start-master.zip ├── TinDog-Start-master ├── .DS_Store ├── README.md ├── css │ ├── .DS_Store │ └── styles.css ├── images │ └── .DS_Store └── index.html ├── bitcoin-ticker ├── index.html ├── index.js ├── package-lock.json └── package.json ├── bootstrap ├── css │ └── master.css ├── images │ ├── TechCrunch.png │ ├── bizinsider.png │ ├── dog-img.jpg │ ├── iphone6.png │ ├── lady-img.jpg │ ├── mashable.png │ └── tnw.png └── index.html ├── boss-level-challenge ├── app.js ├── package-lock.json ├── package.json ├── public │ ├── .DS_Store │ ├── css │ │ └── styles.css │ └── javascript │ │ └── main.js └── views │ ├── .DS_Store │ ├── about.ejs │ ├── compose.ejs │ ├── contact.ejs │ ├── home.ejs │ ├── partials │ ├── footer.ejs │ └── header.ejs │ └── post.ejs ├── calculator ├── bmiCalculator.html ├── calculator.js ├── index.html ├── package-lock.json └── package.json ├── favicon_io ├── .DS_Store ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── cloud (1).png ├── cloudy (1).png ├── css.png ├── favicon-16x16.png ├── favicon-32x32.png ├── github.png ├── html-5.png ├── html.png ├── java.png ├── lake.png ├── logo-via-logohub.png ├── mountain (1).png ├── mountains.png ├── web.png └── www-click.png ├── html-personal-site ├── .DS_Store ├── contact.html ├── css │ └── style.css ├── hobbies.html ├── images │ ├── .DS_Store │ └── sabrina-picture.jpg └── index.html ├── index.js ├── into-to-node ├── index.js ├── package-lock.json └── package.json ├── jquery ├── index.html ├── main.js └── style.css ├── learn └── learn.html ├── my-express-server ├── package-lock.json ├── package.json └── server.js ├── newsletter-signup ├── app.js ├── failure.html ├── package-lock.json ├── package.json ├── public │ ├── css │ │ └── style.css │ └── images │ │ └── application.png ├── signup.html └── success.html ├── personalwebsite ├── .DS_Store ├── CSS_My_Site_End_Results.pdf ├── css │ └── master.css ├── home.html └── images │ ├── .DS_Store │ ├── cloud-with-sun.png │ ├── cloud.png │ ├── code.png │ ├── favicon.ico │ ├── interview.png │ ├── javascript.png │ ├── mountain.png │ ├── sabrina-picture.jpg │ └── test.png └── todolist-v1 ├── app.js ├── date.js ├── index.html ├── package-lock.json ├── package.json ├── public └── css │ └── styles.css └── views ├── about.ejs ├── footer.ejs ├── header.ejs └── list.ejs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Logs 3 | logs 4 | *.log 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | lerna-debug.log*s 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # TypeScript v1 declaration files 46 | typings/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional REPL history 58 | .node_repl_history 59 | 60 | # Output of 'npm pack' 61 | *.tgz 62 | 63 | # Yarn Integrity file 64 | .yarn-integrity 65 | 66 | # dotenv environment variables file 67 | .env 68 | .env.test 69 | 70 | # parcel-bundler cache (https://parceljs.org/) 71 | .cache 72 | 73 | # next.js build output 74 | .next 75 | 76 | # nuxt.js build output 77 | .nuxt 78 | 79 | # vuepress build output 80 | .vuepress/dist 81 | 82 | # Serverless directories 83 | .serverless/ 84 | 85 | # FuseBox cache 86 | .fusebox/ 87 | 88 | # DynamoDB Local files 89 | .dynamodb/ 90 | -------------------------------------------------------------------------------- /12-Rules-to-Learn-to-Code-eBook-Updated-26.11.18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/12-Rules-to-Learn-to-Code-eBook-Updated-26.11.18.pdf -------------------------------------------------------------------------------- /DOM/css/master.css: -------------------------------------------------------------------------------- 1 | h1{ 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /DOM/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DOM 6 | 7 | 8 | 9 |

Hello

10 | 11 | 12 | 13 | 14 | 15 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /DOM/javascript/main.js: -------------------------------------------------------------------------------- 1 | alert('Hello you') 2 | -------------------------------------------------------------------------------- /Dicee Challenge/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/.DS_Store -------------------------------------------------------------------------------- /Dicee Challenge/dicee.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Dicee 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Refresh Me

14 | 15 |
16 |

Player 1

17 | 18 |
19 | 20 |
21 |

Player 2

22 | 23 |
24 | 25 |
26 | 27 | 28 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Dicee Challenge/images/dice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice1.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice2.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice3.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice4.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice5.png -------------------------------------------------------------------------------- /Dicee Challenge/images/dice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Dicee Challenge/images/dice6.png -------------------------------------------------------------------------------- /Dicee Challenge/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Start the game 3 | */ 4 | function startGame(){ 5 | 6 | var diceOne = random(6, 1); 7 | var diceTwo = random(6, 1); 8 | 9 | changeImage('img1', diceOne); 10 | changeImage('img2', diceTwo); 11 | 12 | if(diceOne > diceTwo){ 13 | document.getElementById('title').innerHTML = 'Player 1 Wins! 🏆' 14 | }else if (diceTwo > diceOne){ 15 | document.getElementById('title').innerHTML = 'Player 2 Wins! 🏆' 16 | }else{ 17 | document.getElementById('title').innerHTML = 'Draw!' 18 | } 19 | 20 | } 21 | 22 | /* 23 | * Random number 24 | */ 25 | function random (max, min){ 26 | 27 | //return parseInt(Math.random() * (max - min) + min); 28 | return Math.floor(Math.random() * 6) + 1; 29 | 30 | } 31 | 32 | /* 33 | * Change the image 34 | */ 35 | function changeImage(img, number){ 36 | 37 | switch (number) { 38 | case 1: 39 | document.getElementById(img).src = 'images/dice1.png' 40 | break; 41 | case 2: 42 | document.getElementById(img).src = 'images/dice2.png' 43 | break; 44 | case 3: 45 | document.getElementById(img).src = 'images/dice3.png' 46 | break; 47 | case 4: 48 | document.getElementById(img).src = 'images/dice4.png' 49 | break; 50 | case 5: 51 | document.getElementById(img).src = 'images/dice5.png' 52 | break; 53 | default: 54 | document.getElementById(img).src = 'images/dice5.png' 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /Dicee Challenge/styles.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width: 70%; 3 | margin: auto; 4 | text-align: center; 5 | } 6 | 7 | .dice { 8 | text-align: center; 9 | display: inline-block; 10 | 11 | } 12 | 13 | body { 14 | background-color: #393E46; 15 | } 16 | 17 | h1 { 18 | margin: 30px; 19 | font-family: 'Lobster', cursive; 20 | text-shadow: 5px 0 #232931; 21 | font-size: 8rem; 22 | color: #4ECCA3; 23 | } 24 | 25 | p { 26 | font-size: 2rem; 27 | color: #4ECCA3; 28 | font-family: 'Indie Flower', cursive; 29 | } 30 | 31 | img { 32 | width: 80%; 33 | } 34 | 35 | footer { 36 | margin-top: 5%; 37 | color: #EEEEEE; 38 | text-align: center; 39 | font-family: 'Indie Flower', cursive; 40 | 41 | } 42 | -------------------------------------------------------------------------------- /Drum Kit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/.DS_Store -------------------------------------------------------------------------------- /Drum Kit/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/crash.png -------------------------------------------------------------------------------- /Drum Kit/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/kick.png -------------------------------------------------------------------------------- /Drum Kit/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/snare.png -------------------------------------------------------------------------------- /Drum Kit/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/tom1.png -------------------------------------------------------------------------------- /Drum Kit/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/tom2.png -------------------------------------------------------------------------------- /Drum Kit/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/tom3.png -------------------------------------------------------------------------------- /Drum Kit/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/images/tom4.png -------------------------------------------------------------------------------- /Drum Kit/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Drum Kit 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Drum 🥁 Kit

14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Drum Kit/index.js: -------------------------------------------------------------------------------- 1 | document.addEventListener('keydown', function(event){ 2 | 3 | handleSounds(event.key); 4 | 5 | }); 6 | 7 | 8 | function play(element){ 9 | 10 | handleSounds(element.id); 11 | 12 | } 13 | 14 | function handleSounds(position){ 15 | 16 | switch (position) { 17 | case 'first', 'w': 18 | 19 | var firstAudio = new Audio('sounds/tom-1.mp3') 20 | firstAudio.play() 21 | 22 | break; 23 | case 'second', 'a': 24 | 25 | var secondAudio = new Audio('sounds/tom-2.mp3') 26 | secondAudio.play() 27 | 28 | break; 29 | case 'third', 's': 30 | 31 | var thirdAudio = new Audio('sounds/tom-3.mp3') 32 | thirdAudio.play() 33 | 34 | break; 35 | case 'fourth', 'd': 36 | 37 | var fourthAudio = new Audio('sounds/tom-4.mp3') 38 | fourthAudio.play() 39 | 40 | break; 41 | case 'fiveth', 'j': 42 | 43 | var fivethAudio = new Audio('sounds/crash.mp3') 44 | fivethAudio.play() 45 | 46 | break; 47 | case 'sixth', 'k': 48 | 49 | var sixthAudio = new Audio('sounds/kick-bass.mp3') 50 | sixthAudio.play() 51 | 52 | break; 53 | case 'seventh', 'l': 54 | 55 | var seventhAudio = new Audio('sounds/snare.mp3') 56 | seventhAudio.play() 57 | 58 | break; 59 | default: 60 | //console.log('nothing will happen'); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /Drum Kit/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/crash.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/snare.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Drum Kit/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /Drum Kit/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | text-align: center; 3 | background-color: #283149; 4 | } 5 | 6 | h1 { 7 | font-size: 5rem; 8 | color: #DBEDF3; 9 | font-family: "Arvo", cursive; 10 | text-shadow: 3px 0 #DA0463; 11 | 12 | } 13 | 14 | footer { 15 | color: #DBEDF3; 16 | font-family: sans-serif; 17 | } 18 | 19 | .w { 20 | background-image: url('images/tom1.png'); 21 | } 22 | 23 | .a { 24 | background-image: url('images/tom2.png'); 25 | } 26 | 27 | .s { 28 | background-image: url('images/tom3.png'); 29 | } 30 | 31 | .d { 32 | background-image: url('images/tom4.png'); 33 | } 34 | 35 | .j { 36 | background-image: url('images/crash.png'); 37 | } 38 | 39 | .k { 40 | background-image: url('images/kick.png'); 41 | } 42 | 43 | .l { 44 | background-image: url('images/snare.png'); 45 | } 46 | 47 | .set { 48 | margin: 10% auto; 49 | } 50 | 51 | .game-over { 52 | background-color: red; 53 | opacity: 0.8; 54 | } 55 | 56 | .pressed { 57 | box-shadow: 0 3px 4px 0 #DBEDF3; 58 | opacity: 0.5; 59 | } 60 | 61 | .red { 62 | color: red; 63 | } 64 | 65 | .drum { 66 | outline: none; 67 | border: 10px solid #404B69; 68 | font-size: 5rem; 69 | font-family: 'Arvo', cursive; 70 | line-height: 2; 71 | font-weight: 900; 72 | color: #DA0463; 73 | text-shadow: 3px 0 #DBEDF3; 74 | border-radius: 15px; 75 | display: inline-block; 76 | width: 150px; 77 | height: 150px; 78 | text-align: center; 79 | margin: 10px; 80 | background-color: white; 81 | } 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # The Complete 2020 Web Development Bootcamp 3 | 4 | Whats I will learn: 5 | 6 | - Be able to build ANY website you want. 7 | 8 | - Craft a portfolio of websites to apply for junior developer jobs. 9 | 10 | - Build fully-fledged websites and web apps for your startup or business. 11 | 12 | - Work as a freelance web developer. 13 | 14 | - Master backend development with Node 15 | 16 | - Master frontend development with React 17 | 18 | - Learn the latest frameworks and technologies, including Javascript ES6, Bootstrap 4, MongoDB. 19 | 20 | - Learn professional developer best practices. 21 | 22 | link: https://www.udemy.com/course/the-complete-web-development-bootcamp/ 23 | -------------------------------------------------------------------------------- /Secrets - Starting Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Secrets - Starting Code/.DS_Store -------------------------------------------------------------------------------- /Secrets - Starting Code/app.js: -------------------------------------------------------------------------------- 1 | require("dotenv").config(); 2 | 3 | const express = require("express"); 4 | const bodyparser = require("body-parser"); 5 | const ejs = require("ejs"); 6 | const mongoose = require("mongoose"); 7 | 8 | //const encryption = require("mongoose-encryption"); 9 | //const md5 = require("md5"); 10 | //const bcrypt = require("bcrypt"); 11 | 12 | const session = require("express-session"); 13 | const passport = require("passport"); 14 | const passportLocalMongoose = require("passport-local-mongoose"); 15 | 16 | 17 | const salt = 10; 18 | const app = express(); 19 | 20 | app.use(express.static("public")); 21 | app.set("view engine", "ejs"); 22 | app.use(bodyparser.urlencoded({ extended: true})); 23 | 24 | app.use(session({ 25 | secret: "our litter secret", 26 | resave: false, 27 | saveUninitialized: false 28 | })); 29 | 30 | app.use(passport.initialize()); 31 | app.use(passport.session()); 32 | 33 | 34 | mongoose.connect("mongodb://localhost:27017/userDB", { useNewUrlParser: true, useUnifiedTopology: true }); 35 | mongoose.set("useCreateIndex", true); 36 | 37 | 38 | const userSchema = new mongoose.Schema({ 39 | email: String, 40 | password: String, 41 | secret: String 42 | }); 43 | 44 | 45 | //const secret = "thisisourlittesecret"; 46 | //userSchema.plugin(encryption, { secret: process.env.SECRET, encryptedFields: ["password"]}); 47 | 48 | userSchema.plugin(passportLocalMongoose); 49 | 50 | const User = mongoose.model("User", userSchema) 51 | 52 | 53 | passport.use(User.createStrategy()); 54 | 55 | passport.serializeUser(User.serializeUser()); 56 | passport.deserializeUser(User.deserializeUser()); 57 | 58 | 59 | // home 60 | app.get("/", function(req, res) { 61 | 62 | res.render("home"); 63 | }); 64 | 65 | // secrets 66 | app.get("/secrets", function(req, res){ 67 | 68 | if(req.isAuthenticated()){ 69 | User.find({ "secret": {$ne:null} }, function(err, users){ 70 | if(err){ 71 | console.log(err); 72 | }else{ 73 | if(users){ 74 | res.render("secrets", { users: users}); 75 | } 76 | } 77 | }); 78 | 79 | }else{ 80 | res.redirect("/login"); 81 | } 82 | }); 83 | 84 | 85 | // login 86 | app.get("/login", function(req, res) { 87 | 88 | res.render("login"); 89 | }); 90 | 91 | app.post("/login", function(req, res){ 92 | 93 | const user = new User({ 94 | username: req.body.username, 95 | password: req.body.password 96 | }); 97 | 98 | req.login(user, function(err){ 99 | if(err){ 100 | console.log(err); 101 | }else{ 102 | passport.authenticate("local")(req, res, function(){ 103 | res.redirect("/secrets"); 104 | }); 105 | } 106 | }); 107 | }); 108 | 109 | app.get("/logout", function(req, res){ 110 | 111 | req.logout(); 112 | res.redirect("/"); 113 | }); 114 | 115 | /* 116 | app.post("/login", function(req, res) { 117 | 118 | const username = req.body.username; 119 | const password = req.body.password; 120 | 121 | User.findOne({ email: username}, function(error, user){ 122 | if(error){ 123 | console.log(error); 124 | }else{ 125 | if(user){ 126 | 127 | bcrypt.compare(password, user.password, function(err, result) { 128 | if(result === true){ 129 | res.render("secrets"); 130 | } 131 | }); 132 | 133 | } 134 | } 135 | }) 136 | 137 | }); 138 | */ 139 | 140 | 141 | // register 142 | app.get("/register", function(req, res) { 143 | 144 | res.render("register"); 145 | }); 146 | 147 | app.post("/register", function(req, res){ 148 | 149 | User.register({username: req.body.username, active: false}, req.body.password, function(err, user){ 150 | if(err){ 151 | console.log(err); 152 | res.redirect("/register") 153 | }else{ 154 | passport.authenticate("local")(req, res, function(){ 155 | res.redirect("/secrets"); 156 | }); 157 | } 158 | 159 | 160 | }); 161 | }); 162 | 163 | /* 164 | app.post("/register", function(req, res) { 165 | 166 | bcrypt.hash(req.body.password, salt, function(err, hash) { 167 | const newUser = new User({ 168 | email: req.body.username, 169 | password: hash 170 | }); 171 | 172 | newUser.save(function(error){ 173 | if(error){ 174 | console.log(error); 175 | }else{ 176 | res.render("secrets"); 177 | } 178 | }); 179 | }); 180 | }); 181 | */ 182 | 183 | 184 | app.get("/submit", function(req, res){ 185 | 186 | if(req.isAuthenticated()){ 187 | res.render("submit"); 188 | }else{ 189 | res.redirect("/login"); 190 | } 191 | }) 192 | 193 | app.post("/submit", function(req, res){ 194 | 195 | const submittedSecret = req.body.secret; 196 | 197 | console.log(req.user); // passport 198 | 199 | User.findById(req.user.id, function(err, user){ 200 | if(err){ 201 | console.log(err); 202 | }else{ 203 | if(user){ 204 | user.secret = submittedSecret; 205 | user.save(function(){ 206 | res.redirect("/secrets"); 207 | }); 208 | } 209 | } 210 | }) 211 | 212 | }); 213 | 214 | 215 | app.listen("3000", function(){ 216 | console.log("server running at port 3000"); 217 | }) 218 | -------------------------------------------------------------------------------- /Secrets - Starting Code/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "secrets", 3 | "version": "1.0.0", 4 | "main": "app.js", 5 | "scripts": { 6 | "test": "echo \"Error: no test specified\" && exit 1" 7 | }, 8 | "author": "", 9 | "license": "ISC", 10 | "dependencies": { 11 | "bcrypt": "^3.0.6", 12 | "body-parser": "^1.19.0", 13 | "dotenv": "^8.1.0", 14 | "ejs": "^2.6.2", 15 | "express": "^4.17.1", 16 | "express-session": "^1.16.2", 17 | "md5": "^2.2.1", 18 | "mongoose": "^5.7.1", 19 | "mongoose-encryption": "^2.0.2", 20 | "nodemon": "^1.19.1", 21 | "passport": "^0.4.0", 22 | "passport-local": "^1.0.0", 23 | "passport-local-mongoose": "^5.0.1" 24 | }, 25 | "description": "" 26 | } 27 | -------------------------------------------------------------------------------- /Secrets - Starting Code/public/css/styles.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | background-color: #E8ECEF; 4 | } 5 | 6 | .centered { 7 | padding-top: 200px; 8 | text-align: center; 9 | } 10 | 11 | .secret-text { 12 | text-align: center; 13 | font-size: 2rem; 14 | color: #fff; 15 | background-color: #000; 16 | } 17 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/home.ejs: -------------------------------------------------------------------------------- 1 | <%- include('partials/header') %> 2 | 3 | 4 |
5 |
6 | 7 |

Secrets

8 |

Don't keep your secrets, share them anonymously!

9 |
10 | Register 11 | Login 12 | 13 |
14 |
15 | 16 | <%- include('partials/footer') %> 17 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/login.ejs: -------------------------------------------------------------------------------- 1 | <%- include('partials/header') %> 2 | 3 |
4 |

Login

5 | 6 |
7 |
8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 | 22 |
23 | 24 |
25 |
26 |
27 | 28 | 38 | 39 |
40 |
41 | 42 | <%- include('partials/footer') %> 43 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/partials/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/partials/header.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Secrets 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/register.ejs: -------------------------------------------------------------------------------- 1 | <%- include('partials/header') %> 2 |
3 |

Register

4 | 5 |
6 |
7 |
8 |
9 | 10 | 11 |
12 |
13 | 14 | 15 |
16 |
17 | 18 | 19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 | 27 | 37 | 38 |
39 |
40 | 41 | <%- include('partials/header') %> 42 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/secrets.ejs: -------------------------------------------------------------------------------- 1 | <%- include('partials/header') %> 2 | 3 |
4 |
5 | 6 |

You've Discovered My Secret!

7 | 8 | <% users.forEach(function(user){%> 9 |

<%= user.secret %>

10 | <% })%> 11 | 12 | 13 |
14 | 15 | Log Out 16 | Submit a Secret 17 |
18 |
19 | 20 | <%- include('partials/footer') %> 21 | -------------------------------------------------------------------------------- /Secrets - Starting Code/views/submit.ejs: -------------------------------------------------------------------------------- 1 | <%- include('partials/header') %> 2 | 3 |
4 |
5 | 6 |

Secrets

7 |

Don't keep your secrets, share them anonymously!

8 | 9 |
10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 | 18 |
19 |
20 | <%- include('partials/footer') %> 21 | -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/.DS_Store -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/game.js: -------------------------------------------------------------------------------- 1 | 2 | var buttonColours = ["red", "blue", "green", "yellow"]; 3 | 4 | var gamePattern = []; 5 | var userClickedPattern = []; 6 | 7 | var started = false; 8 | var level = 0; 9 | 10 | $(document).keypress(function() { 11 | if (!started) { 12 | $("#level-title").text("Level " + level); 13 | nextSequence(); 14 | started = true; 15 | } 16 | }); 17 | 18 | $(".btn").click(function() { 19 | 20 | var userChosenColour = $(this).attr("id"); 21 | userClickedPattern.push(userChosenColour); 22 | 23 | playSound(userChosenColour); 24 | animatePress(userChosenColour); 25 | 26 | checkAnswer(userClickedPattern.length-1); 27 | }); 28 | 29 | function checkAnswer(currentLevel) { 30 | 31 | if (gamePattern[currentLevel] === userClickedPattern[currentLevel]) { 32 | if (userClickedPattern.length === gamePattern.length){ 33 | setTimeout(function () { 34 | nextSequence(); 35 | }, 1000); 36 | } 37 | } else { 38 | playSound("wrong"); 39 | $("body").addClass("game-over"); 40 | $("#level-title").text("Game Over, Press Any Key to Restart"); 41 | 42 | setTimeout(function () { 43 | $("body").removeClass("game-over"); 44 | }, 200); 45 | 46 | startOver(); 47 | } 48 | } 49 | 50 | 51 | function nextSequence() { 52 | userClickedPattern = []; 53 | level++; 54 | $("#level-title").text("Level " + level); 55 | var randomNumber = Math.floor(Math.random() * 4); 56 | var randomChosenColour = buttonColours[randomNumber]; 57 | gamePattern.push(randomChosenColour); 58 | 59 | $("#" + randomChosenColour).fadeIn(100).fadeOut(100).fadeIn(100); 60 | playSound(randomChosenColour); 61 | } 62 | 63 | function animatePress(currentColor) { 64 | $("#" + currentColor).addClass("pressed"); 65 | setTimeout(function () { 66 | $("#" + currentColor).removeClass("pressed"); 67 | }, 100); 68 | } 69 | 70 | function playSound(name) { 71 | var audio = new Audio("sounds/" + name + ".mp3"); 72 | audio.play(); 73 | } 74 | 75 | function startOver() { 76 | level = 0; 77 | gamePattern = []; 78 | started = false; 79 | } 80 | -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Simon 7 | 8 | 9 | 10 | 11 | 12 |

Press A Key to Start

13 |
14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 |
23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |
31 | 32 |
33 | 34 |
35 | 36 |
37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/sounds/blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/sounds/blue.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/sounds/green.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/sounds/green.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/sounds/red.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/sounds/red.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/sounds/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/sounds/wrong.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/sounds/yellow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/Simon Game Challenge Starting Files/sounds/yellow.mp3 -------------------------------------------------------------------------------- /Simon Game Challenge Starting Files/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | text-align: center; 3 | background-color: #011F3F; 4 | } 5 | 6 | #level-title { 7 | font-family: 'Press Start 2P', cursive; 8 | font-size: 3rem; 9 | margin: 5%; 10 | color: #FEF2BF; 11 | } 12 | 13 | .container { 14 | display: block; 15 | width: 50%; 16 | margin: auto; 17 | 18 | } 19 | 20 | .btn { 21 | margin: 25px; 22 | display: inline-block; 23 | height: 200px; 24 | width: 200px; 25 | border: 10px solid black; 26 | border-radius: 20%; 27 | } 28 | 29 | .game-over { 30 | background-color: red; 31 | opacity: 0.8; 32 | } 33 | 34 | .red { 35 | background-color: red; 36 | } 37 | 38 | .green { 39 | background-color: green; 40 | } 41 | 42 | .blue { 43 | background-color: blue; 44 | } 45 | 46 | .yellow { 47 | background-color: yellow; 48 | } 49 | 50 | .pressed { 51 | box-shadow: 0 0 20px white; 52 | background-color: grey; 53 | } 54 | -------------------------------------------------------------------------------- /TinDog-Start-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/TinDog-Start-master.zip -------------------------------------------------------------------------------- /TinDog-Start-master/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/TinDog-Start-master/.DS_Store -------------------------------------------------------------------------------- /TinDog-Start-master/README.md: -------------------------------------------------------------------------------- 1 | TinDog Starting Files 2 | -------------------------------------------------------------------------------- /TinDog-Start-master/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/TinDog-Start-master/css/.DS_Store -------------------------------------------------------------------------------- /TinDog-Start-master/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/TinDog-Start-master/css/styles.css -------------------------------------------------------------------------------- /TinDog-Start-master/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/TinDog-Start-master/images/.DS_Store -------------------------------------------------------------------------------- /TinDog-Start-master/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | TinDog 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 |

Meet new and interesting dogs nearby.

23 | 24 | 25 |
26 |
27 | iphone-mockup 28 |
29 | 30 |
31 | 32 | 33 | 34 | 35 |
36 | 37 |

Easy to use.

38 |

So easy to use, even your dog could do it.

39 | 40 |

Elite Clientele

41 |

We have all the dogs, the greatest dogs.

42 | 43 |

Guaranteed to work.

44 |

Find the love of your dog's life or your money back.

45 | 46 |
47 | 48 | 49 | 50 | 51 |
52 | 53 |

I no longer have to sniff other dogs for love. I've found the hottest Corgi on TinDog. Woof.

54 | dog-profile 55 | Pebbles, New York 56 | 57 | 60 | 61 |
62 | 63 | 64 | 65 | 66 |
67 | tc-logo 68 | tnw-logo 69 | biz-insider-logo 70 | mashable-logo 71 | 72 |
73 | 74 | 75 | 76 | 77 |
78 | 79 |

A Plan for Every Dog's Needs

80 |

Simple and affordable price plans for your and your dog.

81 | 82 | 83 |

Chihuahua

84 |

Free

85 |

5 Matches Per Day

86 |

10 Messages Per Day

87 |

Unlimited App Usage

88 | 89 | 90 | 91 |

Labrador

92 |

$49 / mo

93 |

Unlimited Matches

94 |

Unlimited Messages

95 |

Unlimited App Usage

96 | 97 | 98 | 99 |

Mastiff

100 |

$99 / mo

101 |

Pirority Listing

102 |

Unlimited Matches

103 |

Unlimited Messages

104 |

Unlimited App Usage

105 | 106 | 107 |
108 | 109 | 110 | 111 | 112 |
113 | 114 |

Find the True Love of Your Dog's Life Today.

115 | 116 | 117 | 118 |
119 | 120 | 121 | 122 | 123 | 128 | 129 | 130 | 131 | 132 | 133 | -------------------------------------------------------------------------------- /bitcoin-ticker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Bitcoin Ticker 6 | 7 | 8 |

Bitcoin Ticker

9 | 10 |
11 | 12 | 13 | 14 | 19 | 20 | 25 | 26 | 27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /bitcoin-ticker/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const bodyParser = require('body-parser') 3 | const request = require('request') 4 | 5 | const app = express() 6 | 7 | app.use(bodyParser.urlencoded({extended: true})) 8 | 9 | 10 | app.get('/', function(request, response){ 11 | response.sendFile(__dirname + '/index.html') 12 | }) 13 | /* 14 | app.post('/', function(req, res){ 15 | 16 | let crypto = req.body.crypto 17 | let fiat = req.body.fiat 18 | 19 | let url = 'https://apiv2.bitcoinaverage.com/indices/global/ticker/' + crypto + fiat 20 | 21 | request(url, function(error, response, body){ 22 | 23 | var data = JSON.parse(body) 24 | var price = data.last 25 | 26 | res.write("

THe current date is " + data.display_timestamp + "

") 27 | 28 | res.write("

The current price of bitcoin is " + price + " " + fiat + "

") 29 | 30 | res.send() 31 | }) 32 | }) 33 | */ 34 | 35 | app.post('/', function(req, res){ 36 | 37 | let crypto = req.body.crypto 38 | let fiat = req.body.fiat 39 | let amount = req.body.amount 40 | 41 | let options = { 42 | url: "https://apiv2.bitcoinaverage.com/convert/global", 43 | method: "GET", 44 | qs: { 45 | from: crypto, 46 | to: fiat, 47 | amount: amount 48 | } 49 | } 50 | 51 | request(options, function(error, response, body){ 52 | 53 | var data = JSON.parse(body) 54 | var price = data.price 55 | 56 | res.write("

THe current date is " + data.time + "

") 57 | 58 | res.write("

"+ amount + " " + crypto +" is currently worth " + price + " " + fiat + "

") 59 | 60 | res.send() 61 | }) 62 | }) 63 | 64 | app.listen(5000, function(){ 65 | console.log('Server is running on port 5000.'); 66 | }) 67 | -------------------------------------------------------------------------------- /bitcoin-ticker/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bitcoin-ticker", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.19.0", 13 | "express": "^4.17.1", 14 | "nodemon": "^1.19.1", 15 | "request": "^2.88.0" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /bootstrap/css/master.css: -------------------------------------------------------------------------------- 1 | body{ 2 | font-family: 'Montserrat', sans-serif; 3 | } 4 | 5 | h1{ 6 | font-family: 'Montserrat', sans-serif; 7 | font-size: 3rem; 8 | font-weight: 900; 9 | line-height: 1.5; 10 | color: white; 11 | } 12 | 13 | a, p{ 14 | font-family: 'Montserrat', sans-serif; 15 | } 16 | 17 | 18 | .container-fluid{ 19 | padding: 3% 15% 7%; 20 | } 21 | 22 | /* title section */ 23 | 24 | #title{ 25 | background-color: #FF4C68; 26 | } 27 | 28 | .navbar{ 29 | padding: 0 0 4.5rem; 30 | } 31 | 32 | .navbar-brand{ 33 | font-family: 'Ubuntu', sans-serif; 34 | font-size: 1.5rem; 35 | font-weight: 400; 36 | } 37 | 38 | .nav-link{ 39 | font-size: 1.3rem; 40 | } 41 | 42 | .nav-item{ 43 | color: white; 44 | padding: 0 18px; 45 | } 46 | 47 | /* download botton */ 48 | 49 | .btn-download{ 50 | margin: 5% 3% 5% 0; 51 | } 52 | 53 | /* title image */ 54 | 55 | .img-title{ 56 | width: 60%; 57 | transform: rotate(25deg); 58 | position: absolute; 59 | right: 30%; 60 | } 61 | 62 | /* feature section */ 63 | 64 | #features{ 65 | position: relative; 66 | z-index: 0 ; 67 | padding: 7% 15%; 68 | background-color: white; 69 | color: black; 70 | } 71 | 72 | .feature-box{ 73 | text-align: center; 74 | padding: 5%; 75 | } 76 | 77 | .feature-box i{ 78 | padding-bottom: 1rem; 79 | color: #EF8172; 80 | } 81 | 82 | .feature-box i:hover{ 83 | color: #FF4C68; 84 | } 85 | 86 | .feature-box h3{ 87 | font-family: 'Montserrat', sans-serif; 88 | font-weight: 600; 89 | line-height: 1.5rem; 90 | } 91 | 92 | .feature-box p{ 93 | color: #8F8F8F; 94 | margin-top: 16px; 95 | } 96 | 97 | /* testimonials section */ 98 | 99 | #testimonials{ 100 | text-align: center; 101 | background-color: #EF8172; 102 | } 103 | 104 | #testimonials h2{ 105 | color: white; 106 | font-family: 'Montserrat', sans-serif; 107 | font-weight: 900; 108 | font-size: 3rem; 109 | line-height: 1.6; 110 | } 111 | 112 | #testimonials em{ 113 | color: white; 114 | } 115 | 116 | .carousel-item{ 117 | padding: 7% 15%; 118 | } 119 | 120 | .img-testimonial{ 121 | width: 10%; 122 | border-radius: 100%; 123 | margin: 20px; 124 | } 125 | 126 | /* press section */ 127 | 128 | #press{ 129 | text-align: center; 130 | background-color: #EF8172; 131 | margin-bottom: 3%; 132 | } 133 | 134 | .img-press{ 135 | width: 15%; 136 | margin: 20px 20px 50px; 137 | } 138 | 139 | 140 | /* pricing section */ 141 | 142 | #pricing{ 143 | padding: 100px; 144 | text-align: center; 145 | } 146 | 147 | .pricing-column{ 148 | padding: 3% 2%; 149 | } 150 | 151 | .btn-pricing{ 152 | 153 | } 154 | 155 | /* cta */ 156 | 157 | #cta{ 158 | background-color: #FF4C68; 159 | padding: 7% 15%; 160 | text-align: center; 161 | } 162 | 163 | #cta h3{ 164 | font-family: 'Montserrat', sans-serif; 165 | font-weight: 600; 166 | font-size: 40px; 167 | color: #ffffff; 168 | 169 | padding-top: 50px; 170 | } 171 | 172 | /* footer */ 173 | 174 | #footer{ 175 | padding: 7% 15%; 176 | text-align: center; 177 | } 178 | 179 | #footer i{ 180 | padding-left: 15px; 181 | } 182 | 183 | #footer .icons{ 184 | margin-bottom: 15px; 185 | } 186 | 187 | @media screen (max-width: 1028px) { 188 | 189 | #title{ 190 | text-align: center; 191 | } 192 | 193 | .img-title{ 194 | transform: rotate(0); 195 | position: static; 196 | } 197 | } 198 | -------------------------------------------------------------------------------- /bootstrap/images/TechCrunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/TechCrunch.png -------------------------------------------------------------------------------- /bootstrap/images/bizinsider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/bizinsider.png -------------------------------------------------------------------------------- /bootstrap/images/dog-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/dog-img.jpg -------------------------------------------------------------------------------- /bootstrap/images/iphone6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/iphone6.png -------------------------------------------------------------------------------- /bootstrap/images/lady-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/lady-img.jpg -------------------------------------------------------------------------------- /bootstrap/images/mashable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/mashable.png -------------------------------------------------------------------------------- /bootstrap/images/tnw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/bootstrap/images/tnw.png -------------------------------------------------------------------------------- /bootstrap/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Bootstrap 21 | 22 | 23 |
24 | 25 |
26 | 27 | 28 | 51 | 52 | 53 | 54 |
55 | 56 |
57 |

Meet new and interesting dogs nearby.

58 | 59 | 60 |
61 | 62 |
63 | iphone-mockup 64 |
65 |
66 |
67 |
68 | 69 | 70 | 71 | 72 |
73 | 74 | 75 | 76 | 77 |
78 | 79 |
80 | 81 |

Easy to use.

82 |

So easy to use, even your dog could do it.

83 |
84 | 85 |
86 | 87 |

Elite Clientele

88 |

We have all the dogs, the greatest dogs.

89 |
90 | 91 |
92 | 93 |

Guaranteed to work.

94 |

Find the love of your dog's life or your money back.

95 |
96 | 97 |
98 | 99 | 100 |
101 | 102 | 103 | 104 | 105 |
106 | 107 | 133 | 134 | 135 |
136 | 137 | 138 | 139 | 140 |
141 | tc-logo 142 | tnw-logo 143 | biz-insider-logo 144 | mashable-logo 145 | 146 |
147 | 148 | 149 | 150 | 151 |
152 |

A Plan for Every Dog's Needs

153 |

Simple and affordable price plans for your and your dog.

154 | 155 |
156 | 157 |
158 |
159 |
160 |

Chihuahua

161 |
162 |
163 |

Free

164 |

5 Matches Per Day

165 |

10 Messages Per Day

166 |

Unlimited App Usage

167 | 168 |
169 |
170 |
171 | 172 |
173 |
174 |
175 |

Labrador

176 |
177 |
178 |

$49 / mo

179 |

Unlimited Matches

180 |

Unlimited Messages

181 |

Unlimited App Usage

182 | 183 |
184 |
185 |
186 | 187 |
188 |
189 |
190 |

Mastiff

191 |
192 |
193 |

$99 / mo

194 |

Pirority Listing

195 |

Unlimited Matches

196 |

Unlimited Messages

197 |

Unlimited App Usage

198 | 199 |
200 |
201 |
202 | 203 | 204 |
205 | 206 |
207 | 208 | 209 | 210 | 211 |
212 | 213 |

Find the True Love of Your Dog's Life Today.

214 | 215 | 216 |
217 | 218 | 219 | 220 | 221 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | -------------------------------------------------------------------------------- /boss-level-challenge/app.js: -------------------------------------------------------------------------------- 1 | //jshint esversion:6 2 | 3 | const express = require("express"); 4 | const bodyParser = require("body-parser"); 5 | const ejs = require("ejs"); 6 | const _ = require("lodash") 7 | 8 | const homeStartingContent = "Lacus vel facilisis volutpat est velit egestas dui id ornare. Semper auctor neque vitae tempus quam. Sit amet cursus sit amet dictum sit amet justo. Viverra tellus in hac habitasse. Imperdiet proin fermentum leo vel orci porta. Donec ultrices tincidunt arcu non sodales neque sodales ut. Mattis molestie a iaculis at erat pellentesque adipiscing. Magnis dis parturient montes nascetur ridiculus mus mauris vitae ultricies. Adipiscing elit ut aliquam purus sit amet luctus venenatis lectus. Ultrices vitae auctor eu augue ut lectus arcu bibendum at. Odio euismod lacinia at quis risus sed vulputate odio ut. Cursus mattis molestie a iaculis at erat pellentesque adipiscing."; 9 | const aboutContent = "Hac habitasse platea dictumst vestibulum rhoncus est pellentesque. Dictumst vestibulum rhoncus est pellentesque elit ullamcorper. Non diam phasellus vestibulum lorem sed. Platea dictumst quisque sagittis purus sit. Egestas sed sed risus pretium quam vulputate dignissim suspendisse. Mauris in aliquam sem fringilla. Semper risus in hendrerit gravida rutrum quisque non tellus orci. Amet massa vitae tortor condimentum lacinia quis vel eros. Enim ut tellus elementum sagittis vitae. Mauris ultrices eros in cursus turpis massa tincidunt dui."; 10 | const contactContent = "Scelerisque eleifend donec pretium vulputate sapien. Rhoncus urna neque viverra justo nec ultrices. Arcu dui vivamus arcu felis bibendum. Consectetur adipiscing elit duis tristique. Risus viverra adipiscing at in tellus integer feugiat. Sapien nec sagittis aliquam malesuada bibendum arcu vitae. Consequat interdum varius sit amet mattis. Iaculis nunc sed augue lacus. Interdum posuere lorem ipsum dolor sit amet consectetur adipiscing elit. Pulvinar elementum integer enim neque. Ultrices gravida dictum fusce ut placerat orci nulla. Mauris in aliquam sem fringilla ut morbi tincidunt. Tortor posuere ac ut consequat semper viverra nam libero."; 11 | const posts = []; 12 | 13 | 14 | const app = express(); 15 | 16 | app.set('view engine', 'ejs'); 17 | 18 | app.use(bodyParser.urlencoded({extended: true})); 19 | app.use(express.static("public")); 20 | 21 | 22 | // home page 23 | app.get('/', function(req, res){ 24 | 25 | res.render('home', { homeStartingContent: homeStartingContent, posts: posts}); 26 | }) 27 | 28 | 29 | // about page 30 | app.get('/about', function(req, res){ 31 | 32 | res.render('about', { aboutContent: aboutContent}); 33 | }) 34 | 35 | 36 | // contact page 37 | app.get('/contact', function(req, res){ 38 | 39 | res.render('contact', { contactContent: contactContent}); 40 | }) 41 | 42 | 43 | // compose page 44 | app.get('/compose', function(req, res){ 45 | 46 | res.render('compose'); 47 | }) 48 | 49 | 50 | // post :postTitle 51 | app.get('/posts/:postTitle', function(req, res){ 52 | 53 | let requestTitle = _.lowerCase(req.params.postTitle) 54 | 55 | console.log('requestTitle', requestTitle); 56 | 57 | posts.forEach(function(post){ 58 | if(_.lowerCase(post.postTitle) === requestTitle){ 59 | 60 | res.render('post', {post: post}); 61 | } 62 | }) 63 | 64 | }); 65 | 66 | 67 | app.post('/compose', function(req, res){ 68 | 69 | let postTitle = req.body.postTitle 70 | let postBody = req.body.postBody 71 | 72 | let postObj = { 73 | postTitle: postTitle, 74 | postBody: postBody 75 | } 76 | 77 | posts.push(postObj) 78 | 79 | res.redirect('/') 80 | 81 | }) 82 | 83 | 84 | 85 | app.listen(5000, function() { 86 | console.log("Server started on port 5000"); 87 | }); 88 | -------------------------------------------------------------------------------- /boss-level-challenge/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ejs-challenge", 3 | "version": "1.0.0", 4 | "main": "app.js", 5 | "scripts": { 6 | "test": "echo \"Error: no test specified\" && exit 1" 7 | }, 8 | "author": "", 9 | "license": "ISC", 10 | "dependencies": { 11 | "body-parser": "^1.18.3", 12 | "ejs": "^2.6.1", 13 | "express": "^4.16.3", 14 | "lodash": "^4.17.15", 15 | "nodemon": "^1.19.2" 16 | }, 17 | "description": "" 18 | } 19 | -------------------------------------------------------------------------------- /boss-level-challenge/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/boss-level-challenge/public/.DS_Store -------------------------------------------------------------------------------- /boss-level-challenge/public/css/styles.css: -------------------------------------------------------------------------------- 1 | .container-fluid { 2 | padding-top: 70px; 3 | padding-bottom: 70px; 4 | } 5 | .navbar { 6 | padding-top: 15px; 7 | padding-bottom: 15px; 8 | border: 0; 9 | border-radius: 0; 10 | margin-bottom: 0; 11 | font-size: 12px; 12 | letter-spacing: 5px; 13 | } 14 | .navbar-nav li a:hover { 15 | color: #1abc9c !important; 16 | } 17 | 18 | .footer-padding { 19 | padding-bottom: 60px; 20 | } 21 | 22 | .footer { 23 | position: absolute; 24 | text-align: center; 25 | bottom: 0; 26 | width: 100%; 27 | height: 60px; 28 | background-color: #1abc9c; 29 | } 30 | 31 | .footer p { 32 | margin-top: 25px; 33 | font-size: 12px; 34 | color: #fff; 35 | } 36 | -------------------------------------------------------------------------------- /boss-level-challenge/public/javascript/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /boss-level-challenge/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/boss-level-challenge/views/.DS_Store -------------------------------------------------------------------------------- /boss-level-challenge/views/about.ejs: -------------------------------------------------------------------------------- 1 | <%- include("partials/header") -%> 2 |

About

3 |

4 | <%= aboutContent %> 5 |

6 | 7 | <%- include("partials/footer") -%> 8 | -------------------------------------------------------------------------------- /boss-level-challenge/views/compose.ejs: -------------------------------------------------------------------------------- 1 | <%- include("partials/header") -%> 2 | 3 |
4 |

Compose

5 | 6 |
7 | 8 | 9 |
10 | 11 |
12 | 13 | 14 |
15 | 16 | 17 |
18 | 19 | <%- include("partials/footer") -%> 20 | -------------------------------------------------------------------------------- /boss-level-challenge/views/contact.ejs: -------------------------------------------------------------------------------- 1 | <%- include("partials/header") -%> 2 |

Contact

3 |

4 | <%= contactContent %> 5 |

6 | <%- include("partials/footer") -%> 7 | -------------------------------------------------------------------------------- /boss-level-challenge/views/home.ejs: -------------------------------------------------------------------------------- 1 | 2 | <%- include("partials/header") -%> 3 |

Home

4 | 5 |

6 | <%= homeStartingContent %> 7 |

8 | 9 | <% posts.forEach(function(post){ %> 10 |

<%= post.postTitle %>

11 |

<%= post.postBody.substring(0, 100) + " ..." %> 12 | Read More 13 |

14 | <% }) %> 15 | 16 | <%- include("partials/footer") -%> 17 | -------------------------------------------------------------------------------- /boss-level-challenge/views/partials/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /boss-level-challenge/views/partials/header.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Daily Journal 7 | 8 | 9 | 10 | 23 | 24 | 25 |
26 | -------------------------------------------------------------------------------- /boss-level-challenge/views/post.ejs: -------------------------------------------------------------------------------- 1 | 2 | <%- include("partials/header") -%> 3 | 4 |

<%= post.postTitle %>

5 | 6 |

7 | <%= post.postBody %> 8 |

9 | 10 | <%- include("partials/footer") -%> 11 | -------------------------------------------------------------------------------- /calculator/bmiCalculator.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BMI Calculator 6 | 7 | 8 |

BMI CALCULATE

9 |
10 | 11 |

12 | 13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /calculator/calculator.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const bodyParser = require('body-parser'); 3 | 4 | const app = express(); 5 | app.use(bodyParser.urlencoded({ extended: true})) 6 | 7 | app.get('/', function(request, response){ 8 | response.sendFile(__dirname + '/index.html'); 9 | }) 10 | 11 | app.post('/', function(request, response) { 12 | var numberOne = Number(request.body.numberOne); 13 | var numberTwo = Number(request.body.numberTwo); 14 | var result = numberOne + numberTwo 15 | 16 | response.send('The result of the calculate is ' + result) 17 | }) 18 | 19 | app.get('/bmiCalculator', function(request, response){ 20 | response.sendFile(__dirname + '/bmiCalculator.html') 21 | }) 22 | 23 | app.post('/bmiCalculator', function(request, response){ 24 | var height = Number(request.body.height); 25 | var weight = Number(request.body.weight); 26 | var result = weight / (height * height); 27 | 28 | response.send('Your BMI is ' + result) 29 | }) 30 | 31 | app.listen(5000, function(){ 32 | console.log('port 5000'); 33 | }); 34 | -------------------------------------------------------------------------------- /calculator/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Calculator 6 | 7 | 8 |

Calculator

9 |
10 | 11 |

12 | 13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /calculator/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "calculator", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "abbrev": { 8 | "version": "1.1.1", 9 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 10 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 11 | }, 12 | "accepts": { 13 | "version": "1.3.7", 14 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 15 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 16 | "requires": { 17 | "mime-types": "~2.1.24", 18 | "negotiator": "0.6.2" 19 | } 20 | }, 21 | "ansi-align": { 22 | "version": "2.0.0", 23 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", 24 | "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", 25 | "requires": { 26 | "string-width": "^2.0.0" 27 | } 28 | }, 29 | "ansi-regex": { 30 | "version": "3.0.0", 31 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 32 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" 33 | }, 34 | "ansi-styles": { 35 | "version": "3.2.1", 36 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 37 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 38 | "requires": { 39 | "color-convert": "^1.9.0" 40 | } 41 | }, 42 | "anymatch": { 43 | "version": "2.0.0", 44 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", 45 | "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", 46 | "requires": { 47 | "micromatch": "^3.1.4", 48 | "normalize-path": "^2.1.1" 49 | }, 50 | "dependencies": { 51 | "normalize-path": { 52 | "version": "2.1.1", 53 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", 54 | "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", 55 | "requires": { 56 | "remove-trailing-separator": "^1.0.1" 57 | } 58 | } 59 | } 60 | }, 61 | "arr-diff": { 62 | "version": "4.0.0", 63 | "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", 64 | "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" 65 | }, 66 | "arr-flatten": { 67 | "version": "1.1.0", 68 | "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", 69 | "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" 70 | }, 71 | "arr-union": { 72 | "version": "3.1.0", 73 | "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", 74 | "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" 75 | }, 76 | "array-flatten": { 77 | "version": "1.1.1", 78 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 79 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 80 | }, 81 | "array-unique": { 82 | "version": "0.3.2", 83 | "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", 84 | "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" 85 | }, 86 | "assign-symbols": { 87 | "version": "1.0.0", 88 | "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", 89 | "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" 90 | }, 91 | "async-each": { 92 | "version": "1.0.3", 93 | "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", 94 | "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" 95 | }, 96 | "atob": { 97 | "version": "2.1.2", 98 | "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", 99 | "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" 100 | }, 101 | "balanced-match": { 102 | "version": "1.0.0", 103 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 104 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" 105 | }, 106 | "base": { 107 | "version": "0.11.2", 108 | "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", 109 | "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", 110 | "requires": { 111 | "cache-base": "^1.0.1", 112 | "class-utils": "^0.3.5", 113 | "component-emitter": "^1.2.1", 114 | "define-property": "^1.0.0", 115 | "isobject": "^3.0.1", 116 | "mixin-deep": "^1.2.0", 117 | "pascalcase": "^0.1.1" 118 | }, 119 | "dependencies": { 120 | "define-property": { 121 | "version": "1.0.0", 122 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", 123 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", 124 | "requires": { 125 | "is-descriptor": "^1.0.0" 126 | } 127 | }, 128 | "is-accessor-descriptor": { 129 | "version": "1.0.0", 130 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", 131 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", 132 | "requires": { 133 | "kind-of": "^6.0.0" 134 | } 135 | }, 136 | "is-data-descriptor": { 137 | "version": "1.0.0", 138 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", 139 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", 140 | "requires": { 141 | "kind-of": "^6.0.0" 142 | } 143 | }, 144 | "is-descriptor": { 145 | "version": "1.0.2", 146 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", 147 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", 148 | "requires": { 149 | "is-accessor-descriptor": "^1.0.0", 150 | "is-data-descriptor": "^1.0.0", 151 | "kind-of": "^6.0.2" 152 | } 153 | } 154 | } 155 | }, 156 | "binary-extensions": { 157 | "version": "1.13.1", 158 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", 159 | "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" 160 | }, 161 | "body-parser": { 162 | "version": "1.19.0", 163 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 164 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 165 | "requires": { 166 | "bytes": "3.1.0", 167 | "content-type": "~1.0.4", 168 | "debug": "2.6.9", 169 | "depd": "~1.1.2", 170 | "http-errors": "1.7.2", 171 | "iconv-lite": "0.4.24", 172 | "on-finished": "~2.3.0", 173 | "qs": "6.7.0", 174 | "raw-body": "2.4.0", 175 | "type-is": "~1.6.17" 176 | } 177 | }, 178 | "boxen": { 179 | "version": "1.3.0", 180 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", 181 | "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", 182 | "requires": { 183 | "ansi-align": "^2.0.0", 184 | "camelcase": "^4.0.0", 185 | "chalk": "^2.0.1", 186 | "cli-boxes": "^1.0.0", 187 | "string-width": "^2.0.0", 188 | "term-size": "^1.2.0", 189 | "widest-line": "^2.0.0" 190 | } 191 | }, 192 | "brace-expansion": { 193 | "version": "1.1.11", 194 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 195 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 196 | "requires": { 197 | "balanced-match": "^1.0.0", 198 | "concat-map": "0.0.1" 199 | } 200 | }, 201 | "braces": { 202 | "version": "2.3.2", 203 | "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", 204 | "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", 205 | "requires": { 206 | "arr-flatten": "^1.1.0", 207 | "array-unique": "^0.3.2", 208 | "extend-shallow": "^2.0.1", 209 | "fill-range": "^4.0.0", 210 | "isobject": "^3.0.1", 211 | "repeat-element": "^1.1.2", 212 | "snapdragon": "^0.8.1", 213 | "snapdragon-node": "^2.0.1", 214 | "split-string": "^3.0.2", 215 | "to-regex": "^3.0.1" 216 | }, 217 | "dependencies": { 218 | "extend-shallow": { 219 | "version": "2.0.1", 220 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 221 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 222 | "requires": { 223 | "is-extendable": "^0.1.0" 224 | } 225 | } 226 | } 227 | }, 228 | "bytes": { 229 | "version": "3.1.0", 230 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 231 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 232 | }, 233 | "cache-base": { 234 | "version": "1.0.1", 235 | "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", 236 | "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", 237 | "requires": { 238 | "collection-visit": "^1.0.0", 239 | "component-emitter": "^1.2.1", 240 | "get-value": "^2.0.6", 241 | "has-value": "^1.0.0", 242 | "isobject": "^3.0.1", 243 | "set-value": "^2.0.0", 244 | "to-object-path": "^0.3.0", 245 | "union-value": "^1.0.0", 246 | "unset-value": "^1.0.0" 247 | } 248 | }, 249 | "camelcase": { 250 | "version": "4.1.0", 251 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", 252 | "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" 253 | }, 254 | "capture-stack-trace": { 255 | "version": "1.0.1", 256 | "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", 257 | "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" 258 | }, 259 | "chalk": { 260 | "version": "2.4.2", 261 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 262 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 263 | "requires": { 264 | "ansi-styles": "^3.2.1", 265 | "escape-string-regexp": "^1.0.5", 266 | "supports-color": "^5.3.0" 267 | } 268 | }, 269 | "chokidar": { 270 | "version": "2.1.6", 271 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz", 272 | "integrity": "sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==", 273 | "requires": { 274 | "anymatch": "^2.0.0", 275 | "async-each": "^1.0.1", 276 | "braces": "^2.3.2", 277 | "fsevents": "^1.2.7", 278 | "glob-parent": "^3.1.0", 279 | "inherits": "^2.0.3", 280 | "is-binary-path": "^1.0.0", 281 | "is-glob": "^4.0.0", 282 | "normalize-path": "^3.0.0", 283 | "path-is-absolute": "^1.0.0", 284 | "readdirp": "^2.2.1", 285 | "upath": "^1.1.1" 286 | } 287 | }, 288 | "ci-info": { 289 | "version": "1.6.0", 290 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", 291 | "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" 292 | }, 293 | "class-utils": { 294 | "version": "0.3.6", 295 | "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", 296 | "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", 297 | "requires": { 298 | "arr-union": "^3.1.0", 299 | "define-property": "^0.2.5", 300 | "isobject": "^3.0.0", 301 | "static-extend": "^0.1.1" 302 | }, 303 | "dependencies": { 304 | "define-property": { 305 | "version": "0.2.5", 306 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", 307 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", 308 | "requires": { 309 | "is-descriptor": "^0.1.0" 310 | } 311 | } 312 | } 313 | }, 314 | "cli-boxes": { 315 | "version": "1.0.0", 316 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", 317 | "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" 318 | }, 319 | "collection-visit": { 320 | "version": "1.0.0", 321 | "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", 322 | "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", 323 | "requires": { 324 | "map-visit": "^1.0.0", 325 | "object-visit": "^1.0.0" 326 | } 327 | }, 328 | "color-convert": { 329 | "version": "1.9.3", 330 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 331 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 332 | "requires": { 333 | "color-name": "1.1.3" 334 | } 335 | }, 336 | "color-name": { 337 | "version": "1.1.3", 338 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 339 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 340 | }, 341 | "component-emitter": { 342 | "version": "1.3.0", 343 | "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", 344 | "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" 345 | }, 346 | "concat-map": { 347 | "version": "0.0.1", 348 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 349 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 350 | }, 351 | "configstore": { 352 | "version": "3.1.2", 353 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", 354 | "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", 355 | "requires": { 356 | "dot-prop": "^4.1.0", 357 | "graceful-fs": "^4.1.2", 358 | "make-dir": "^1.0.0", 359 | "unique-string": "^1.0.0", 360 | "write-file-atomic": "^2.0.0", 361 | "xdg-basedir": "^3.0.0" 362 | } 363 | }, 364 | "content-disposition": { 365 | "version": "0.5.3", 366 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 367 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 368 | "requires": { 369 | "safe-buffer": "5.1.2" 370 | } 371 | }, 372 | "content-type": { 373 | "version": "1.0.4", 374 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 375 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 376 | }, 377 | "cookie": { 378 | "version": "0.4.0", 379 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 380 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 381 | }, 382 | "cookie-signature": { 383 | "version": "1.0.6", 384 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 385 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 386 | }, 387 | "copy-descriptor": { 388 | "version": "0.1.1", 389 | "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", 390 | "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" 391 | }, 392 | "core-util-is": { 393 | "version": "1.0.2", 394 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 395 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 396 | }, 397 | "create-error-class": { 398 | "version": "3.0.2", 399 | "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", 400 | "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", 401 | "requires": { 402 | "capture-stack-trace": "^1.0.0" 403 | } 404 | }, 405 | "cross-spawn": { 406 | "version": "5.1.0", 407 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", 408 | "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", 409 | "requires": { 410 | "lru-cache": "^4.0.1", 411 | "shebang-command": "^1.2.0", 412 | "which": "^1.2.9" 413 | } 414 | }, 415 | "crypto-random-string": { 416 | "version": "1.0.0", 417 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", 418 | "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" 419 | }, 420 | "debug": { 421 | "version": "2.6.9", 422 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 423 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 424 | "requires": { 425 | "ms": "2.0.0" 426 | } 427 | }, 428 | "decode-uri-component": { 429 | "version": "0.2.0", 430 | "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", 431 | "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" 432 | }, 433 | "deep-extend": { 434 | "version": "0.6.0", 435 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 436 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" 437 | }, 438 | "define-property": { 439 | "version": "2.0.2", 440 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", 441 | "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", 442 | "requires": { 443 | "is-descriptor": "^1.0.2", 444 | "isobject": "^3.0.1" 445 | }, 446 | "dependencies": { 447 | "is-accessor-descriptor": { 448 | "version": "1.0.0", 449 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", 450 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", 451 | "requires": { 452 | "kind-of": "^6.0.0" 453 | } 454 | }, 455 | "is-data-descriptor": { 456 | "version": "1.0.0", 457 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", 458 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", 459 | "requires": { 460 | "kind-of": "^6.0.0" 461 | } 462 | }, 463 | "is-descriptor": { 464 | "version": "1.0.2", 465 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", 466 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", 467 | "requires": { 468 | "is-accessor-descriptor": "^1.0.0", 469 | "is-data-descriptor": "^1.0.0", 470 | "kind-of": "^6.0.2" 471 | } 472 | } 473 | } 474 | }, 475 | "depd": { 476 | "version": "1.1.2", 477 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 478 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 479 | }, 480 | "destroy": { 481 | "version": "1.0.4", 482 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 483 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 484 | }, 485 | "dot-prop": { 486 | "version": "4.2.0", 487 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", 488 | "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", 489 | "requires": { 490 | "is-obj": "^1.0.0" 491 | } 492 | }, 493 | "duplexer3": { 494 | "version": "0.1.4", 495 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 496 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" 497 | }, 498 | "ee-first": { 499 | "version": "1.1.1", 500 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 501 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 502 | }, 503 | "encodeurl": { 504 | "version": "1.0.2", 505 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 506 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 507 | }, 508 | "escape-html": { 509 | "version": "1.0.3", 510 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 511 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 512 | }, 513 | "escape-string-regexp": { 514 | "version": "1.0.5", 515 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 516 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 517 | }, 518 | "etag": { 519 | "version": "1.8.1", 520 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 521 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 522 | }, 523 | "execa": { 524 | "version": "0.7.0", 525 | "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", 526 | "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", 527 | "requires": { 528 | "cross-spawn": "^5.0.1", 529 | "get-stream": "^3.0.0", 530 | "is-stream": "^1.1.0", 531 | "npm-run-path": "^2.0.0", 532 | "p-finally": "^1.0.0", 533 | "signal-exit": "^3.0.0", 534 | "strip-eof": "^1.0.0" 535 | } 536 | }, 537 | "expand-brackets": { 538 | "version": "2.1.4", 539 | "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", 540 | "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", 541 | "requires": { 542 | "debug": "^2.3.3", 543 | "define-property": "^0.2.5", 544 | "extend-shallow": "^2.0.1", 545 | "posix-character-classes": "^0.1.0", 546 | "regex-not": "^1.0.0", 547 | "snapdragon": "^0.8.1", 548 | "to-regex": "^3.0.1" 549 | }, 550 | "dependencies": { 551 | "define-property": { 552 | "version": "0.2.5", 553 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", 554 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", 555 | "requires": { 556 | "is-descriptor": "^0.1.0" 557 | } 558 | }, 559 | "extend-shallow": { 560 | "version": "2.0.1", 561 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 562 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 563 | "requires": { 564 | "is-extendable": "^0.1.0" 565 | } 566 | } 567 | } 568 | }, 569 | "express": { 570 | "version": "4.17.1", 571 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 572 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 573 | "requires": { 574 | "accepts": "~1.3.7", 575 | "array-flatten": "1.1.1", 576 | "body-parser": "1.19.0", 577 | "content-disposition": "0.5.3", 578 | "content-type": "~1.0.4", 579 | "cookie": "0.4.0", 580 | "cookie-signature": "1.0.6", 581 | "debug": "2.6.9", 582 | "depd": "~1.1.2", 583 | "encodeurl": "~1.0.2", 584 | "escape-html": "~1.0.3", 585 | "etag": "~1.8.1", 586 | "finalhandler": "~1.1.2", 587 | "fresh": "0.5.2", 588 | "merge-descriptors": "1.0.1", 589 | "methods": "~1.1.2", 590 | "on-finished": "~2.3.0", 591 | "parseurl": "~1.3.3", 592 | "path-to-regexp": "0.1.7", 593 | "proxy-addr": "~2.0.5", 594 | "qs": "6.7.0", 595 | "range-parser": "~1.2.1", 596 | "safe-buffer": "5.1.2", 597 | "send": "0.17.1", 598 | "serve-static": "1.14.1", 599 | "setprototypeof": "1.1.1", 600 | "statuses": "~1.5.0", 601 | "type-is": "~1.6.18", 602 | "utils-merge": "1.0.1", 603 | "vary": "~1.1.2" 604 | } 605 | }, 606 | "extend-shallow": { 607 | "version": "3.0.2", 608 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", 609 | "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", 610 | "requires": { 611 | "assign-symbols": "^1.0.0", 612 | "is-extendable": "^1.0.1" 613 | }, 614 | "dependencies": { 615 | "is-extendable": { 616 | "version": "1.0.1", 617 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", 618 | "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", 619 | "requires": { 620 | "is-plain-object": "^2.0.4" 621 | } 622 | } 623 | } 624 | }, 625 | "extglob": { 626 | "version": "2.0.4", 627 | "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", 628 | "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", 629 | "requires": { 630 | "array-unique": "^0.3.2", 631 | "define-property": "^1.0.0", 632 | "expand-brackets": "^2.1.4", 633 | "extend-shallow": "^2.0.1", 634 | "fragment-cache": "^0.2.1", 635 | "regex-not": "^1.0.0", 636 | "snapdragon": "^0.8.1", 637 | "to-regex": "^3.0.1" 638 | }, 639 | "dependencies": { 640 | "define-property": { 641 | "version": "1.0.0", 642 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", 643 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", 644 | "requires": { 645 | "is-descriptor": "^1.0.0" 646 | } 647 | }, 648 | "extend-shallow": { 649 | "version": "2.0.1", 650 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 651 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 652 | "requires": { 653 | "is-extendable": "^0.1.0" 654 | } 655 | }, 656 | "is-accessor-descriptor": { 657 | "version": "1.0.0", 658 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", 659 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", 660 | "requires": { 661 | "kind-of": "^6.0.0" 662 | } 663 | }, 664 | "is-data-descriptor": { 665 | "version": "1.0.0", 666 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", 667 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", 668 | "requires": { 669 | "kind-of": "^6.0.0" 670 | } 671 | }, 672 | "is-descriptor": { 673 | "version": "1.0.2", 674 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", 675 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", 676 | "requires": { 677 | "is-accessor-descriptor": "^1.0.0", 678 | "is-data-descriptor": "^1.0.0", 679 | "kind-of": "^6.0.2" 680 | } 681 | } 682 | } 683 | }, 684 | "fill-range": { 685 | "version": "4.0.0", 686 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", 687 | "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", 688 | "requires": { 689 | "extend-shallow": "^2.0.1", 690 | "is-number": "^3.0.0", 691 | "repeat-string": "^1.6.1", 692 | "to-regex-range": "^2.1.0" 693 | }, 694 | "dependencies": { 695 | "extend-shallow": { 696 | "version": "2.0.1", 697 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 698 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 699 | "requires": { 700 | "is-extendable": "^0.1.0" 701 | } 702 | } 703 | } 704 | }, 705 | "finalhandler": { 706 | "version": "1.1.2", 707 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 708 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 709 | "requires": { 710 | "debug": "2.6.9", 711 | "encodeurl": "~1.0.2", 712 | "escape-html": "~1.0.3", 713 | "on-finished": "~2.3.0", 714 | "parseurl": "~1.3.3", 715 | "statuses": "~1.5.0", 716 | "unpipe": "~1.0.0" 717 | } 718 | }, 719 | "for-in": { 720 | "version": "1.0.2", 721 | "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", 722 | "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" 723 | }, 724 | "forwarded": { 725 | "version": "0.1.2", 726 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 727 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 728 | }, 729 | "fragment-cache": { 730 | "version": "0.2.1", 731 | "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", 732 | "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", 733 | "requires": { 734 | "map-cache": "^0.2.2" 735 | } 736 | }, 737 | "fresh": { 738 | "version": "0.5.2", 739 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 740 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 741 | }, 742 | "fsevents": { 743 | "version": "1.2.9", 744 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", 745 | "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", 746 | "optional": true, 747 | "requires": { 748 | "nan": "^2.12.1", 749 | "node-pre-gyp": "^0.12.0" 750 | }, 751 | "dependencies": { 752 | "abbrev": { 753 | "version": "1.1.1", 754 | "bundled": true, 755 | "optional": true 756 | }, 757 | "ansi-regex": { 758 | "version": "2.1.1", 759 | "bundled": true, 760 | "optional": true 761 | }, 762 | "aproba": { 763 | "version": "1.2.0", 764 | "bundled": true, 765 | "optional": true 766 | }, 767 | "are-we-there-yet": { 768 | "version": "1.1.5", 769 | "bundled": true, 770 | "optional": true, 771 | "requires": { 772 | "delegates": "^1.0.0", 773 | "readable-stream": "^2.0.6" 774 | } 775 | }, 776 | "balanced-match": { 777 | "version": "1.0.0", 778 | "bundled": true, 779 | "optional": true 780 | }, 781 | "brace-expansion": { 782 | "version": "1.1.11", 783 | "bundled": true, 784 | "optional": true, 785 | "requires": { 786 | "balanced-match": "^1.0.0", 787 | "concat-map": "0.0.1" 788 | } 789 | }, 790 | "chownr": { 791 | "version": "1.1.1", 792 | "bundled": true, 793 | "optional": true 794 | }, 795 | "code-point-at": { 796 | "version": "1.1.0", 797 | "bundled": true, 798 | "optional": true 799 | }, 800 | "concat-map": { 801 | "version": "0.0.1", 802 | "bundled": true, 803 | "optional": true 804 | }, 805 | "console-control-strings": { 806 | "version": "1.1.0", 807 | "bundled": true, 808 | "optional": true 809 | }, 810 | "core-util-is": { 811 | "version": "1.0.2", 812 | "bundled": true, 813 | "optional": true 814 | }, 815 | "debug": { 816 | "version": "4.1.1", 817 | "bundled": true, 818 | "optional": true, 819 | "requires": { 820 | "ms": "^2.1.1" 821 | } 822 | }, 823 | "deep-extend": { 824 | "version": "0.6.0", 825 | "bundled": true, 826 | "optional": true 827 | }, 828 | "delegates": { 829 | "version": "1.0.0", 830 | "bundled": true, 831 | "optional": true 832 | }, 833 | "detect-libc": { 834 | "version": "1.0.3", 835 | "bundled": true, 836 | "optional": true 837 | }, 838 | "fs-minipass": { 839 | "version": "1.2.5", 840 | "bundled": true, 841 | "optional": true, 842 | "requires": { 843 | "minipass": "^2.2.1" 844 | } 845 | }, 846 | "fs.realpath": { 847 | "version": "1.0.0", 848 | "bundled": true, 849 | "optional": true 850 | }, 851 | "gauge": { 852 | "version": "2.7.4", 853 | "bundled": true, 854 | "optional": true, 855 | "requires": { 856 | "aproba": "^1.0.3", 857 | "console-control-strings": "^1.0.0", 858 | "has-unicode": "^2.0.0", 859 | "object-assign": "^4.1.0", 860 | "signal-exit": "^3.0.0", 861 | "string-width": "^1.0.1", 862 | "strip-ansi": "^3.0.1", 863 | "wide-align": "^1.1.0" 864 | } 865 | }, 866 | "glob": { 867 | "version": "7.1.3", 868 | "bundled": true, 869 | "optional": true, 870 | "requires": { 871 | "fs.realpath": "^1.0.0", 872 | "inflight": "^1.0.4", 873 | "inherits": "2", 874 | "minimatch": "^3.0.4", 875 | "once": "^1.3.0", 876 | "path-is-absolute": "^1.0.0" 877 | } 878 | }, 879 | "has-unicode": { 880 | "version": "2.0.1", 881 | "bundled": true, 882 | "optional": true 883 | }, 884 | "iconv-lite": { 885 | "version": "0.4.24", 886 | "bundled": true, 887 | "optional": true, 888 | "requires": { 889 | "safer-buffer": ">= 2.1.2 < 3" 890 | } 891 | }, 892 | "ignore-walk": { 893 | "version": "3.0.1", 894 | "bundled": true, 895 | "optional": true, 896 | "requires": { 897 | "minimatch": "^3.0.4" 898 | } 899 | }, 900 | "inflight": { 901 | "version": "1.0.6", 902 | "bundled": true, 903 | "optional": true, 904 | "requires": { 905 | "once": "^1.3.0", 906 | "wrappy": "1" 907 | } 908 | }, 909 | "inherits": { 910 | "version": "2.0.3", 911 | "bundled": true, 912 | "optional": true 913 | }, 914 | "ini": { 915 | "version": "1.3.5", 916 | "bundled": true, 917 | "optional": true 918 | }, 919 | "is-fullwidth-code-point": { 920 | "version": "1.0.0", 921 | "bundled": true, 922 | "optional": true, 923 | "requires": { 924 | "number-is-nan": "^1.0.0" 925 | } 926 | }, 927 | "isarray": { 928 | "version": "1.0.0", 929 | "bundled": true, 930 | "optional": true 931 | }, 932 | "minimatch": { 933 | "version": "3.0.4", 934 | "bundled": true, 935 | "optional": true, 936 | "requires": { 937 | "brace-expansion": "^1.1.7" 938 | } 939 | }, 940 | "minimist": { 941 | "version": "0.0.8", 942 | "bundled": true, 943 | "optional": true 944 | }, 945 | "minipass": { 946 | "version": "2.3.5", 947 | "bundled": true, 948 | "optional": true, 949 | "requires": { 950 | "safe-buffer": "^5.1.2", 951 | "yallist": "^3.0.0" 952 | } 953 | }, 954 | "minizlib": { 955 | "version": "1.2.1", 956 | "bundled": true, 957 | "optional": true, 958 | "requires": { 959 | "minipass": "^2.2.1" 960 | } 961 | }, 962 | "mkdirp": { 963 | "version": "0.5.1", 964 | "bundled": true, 965 | "optional": true, 966 | "requires": { 967 | "minimist": "0.0.8" 968 | } 969 | }, 970 | "ms": { 971 | "version": "2.1.1", 972 | "bundled": true, 973 | "optional": true 974 | }, 975 | "needle": { 976 | "version": "2.3.0", 977 | "bundled": true, 978 | "optional": true, 979 | "requires": { 980 | "debug": "^4.1.0", 981 | "iconv-lite": "^0.4.4", 982 | "sax": "^1.2.4" 983 | } 984 | }, 985 | "node-pre-gyp": { 986 | "version": "0.12.0", 987 | "bundled": true, 988 | "optional": true, 989 | "requires": { 990 | "detect-libc": "^1.0.2", 991 | "mkdirp": "^0.5.1", 992 | "needle": "^2.2.1", 993 | "nopt": "^4.0.1", 994 | "npm-packlist": "^1.1.6", 995 | "npmlog": "^4.0.2", 996 | "rc": "^1.2.7", 997 | "rimraf": "^2.6.1", 998 | "semver": "^5.3.0", 999 | "tar": "^4" 1000 | } 1001 | }, 1002 | "nopt": { 1003 | "version": "4.0.1", 1004 | "bundled": true, 1005 | "optional": true, 1006 | "requires": { 1007 | "abbrev": "1", 1008 | "osenv": "^0.1.4" 1009 | } 1010 | }, 1011 | "npm-bundled": { 1012 | "version": "1.0.6", 1013 | "bundled": true, 1014 | "optional": true 1015 | }, 1016 | "npm-packlist": { 1017 | "version": "1.4.1", 1018 | "bundled": true, 1019 | "optional": true, 1020 | "requires": { 1021 | "ignore-walk": "^3.0.1", 1022 | "npm-bundled": "^1.0.1" 1023 | } 1024 | }, 1025 | "npmlog": { 1026 | "version": "4.1.2", 1027 | "bundled": true, 1028 | "optional": true, 1029 | "requires": { 1030 | "are-we-there-yet": "~1.1.2", 1031 | "console-control-strings": "~1.1.0", 1032 | "gauge": "~2.7.3", 1033 | "set-blocking": "~2.0.0" 1034 | } 1035 | }, 1036 | "number-is-nan": { 1037 | "version": "1.0.1", 1038 | "bundled": true, 1039 | "optional": true 1040 | }, 1041 | "object-assign": { 1042 | "version": "4.1.1", 1043 | "bundled": true, 1044 | "optional": true 1045 | }, 1046 | "once": { 1047 | "version": "1.4.0", 1048 | "bundled": true, 1049 | "optional": true, 1050 | "requires": { 1051 | "wrappy": "1" 1052 | } 1053 | }, 1054 | "os-homedir": { 1055 | "version": "1.0.2", 1056 | "bundled": true, 1057 | "optional": true 1058 | }, 1059 | "os-tmpdir": { 1060 | "version": "1.0.2", 1061 | "bundled": true, 1062 | "optional": true 1063 | }, 1064 | "osenv": { 1065 | "version": "0.1.5", 1066 | "bundled": true, 1067 | "optional": true, 1068 | "requires": { 1069 | "os-homedir": "^1.0.0", 1070 | "os-tmpdir": "^1.0.0" 1071 | } 1072 | }, 1073 | "path-is-absolute": { 1074 | "version": "1.0.1", 1075 | "bundled": true, 1076 | "optional": true 1077 | }, 1078 | "process-nextick-args": { 1079 | "version": "2.0.0", 1080 | "bundled": true, 1081 | "optional": true 1082 | }, 1083 | "rc": { 1084 | "version": "1.2.8", 1085 | "bundled": true, 1086 | "optional": true, 1087 | "requires": { 1088 | "deep-extend": "^0.6.0", 1089 | "ini": "~1.3.0", 1090 | "minimist": "^1.2.0", 1091 | "strip-json-comments": "~2.0.1" 1092 | }, 1093 | "dependencies": { 1094 | "minimist": { 1095 | "version": "1.2.0", 1096 | "bundled": true, 1097 | "optional": true 1098 | } 1099 | } 1100 | }, 1101 | "readable-stream": { 1102 | "version": "2.3.6", 1103 | "bundled": true, 1104 | "optional": true, 1105 | "requires": { 1106 | "core-util-is": "~1.0.0", 1107 | "inherits": "~2.0.3", 1108 | "isarray": "~1.0.0", 1109 | "process-nextick-args": "~2.0.0", 1110 | "safe-buffer": "~5.1.1", 1111 | "string_decoder": "~1.1.1", 1112 | "util-deprecate": "~1.0.1" 1113 | } 1114 | }, 1115 | "rimraf": { 1116 | "version": "2.6.3", 1117 | "bundled": true, 1118 | "optional": true, 1119 | "requires": { 1120 | "glob": "^7.1.3" 1121 | } 1122 | }, 1123 | "safe-buffer": { 1124 | "version": "5.1.2", 1125 | "bundled": true, 1126 | "optional": true 1127 | }, 1128 | "safer-buffer": { 1129 | "version": "2.1.2", 1130 | "bundled": true, 1131 | "optional": true 1132 | }, 1133 | "sax": { 1134 | "version": "1.2.4", 1135 | "bundled": true, 1136 | "optional": true 1137 | }, 1138 | "semver": { 1139 | "version": "5.7.0", 1140 | "bundled": true, 1141 | "optional": true 1142 | }, 1143 | "set-blocking": { 1144 | "version": "2.0.0", 1145 | "bundled": true, 1146 | "optional": true 1147 | }, 1148 | "signal-exit": { 1149 | "version": "3.0.2", 1150 | "bundled": true, 1151 | "optional": true 1152 | }, 1153 | "string-width": { 1154 | "version": "1.0.2", 1155 | "bundled": true, 1156 | "optional": true, 1157 | "requires": { 1158 | "code-point-at": "^1.0.0", 1159 | "is-fullwidth-code-point": "^1.0.0", 1160 | "strip-ansi": "^3.0.0" 1161 | } 1162 | }, 1163 | "string_decoder": { 1164 | "version": "1.1.1", 1165 | "bundled": true, 1166 | "optional": true, 1167 | "requires": { 1168 | "safe-buffer": "~5.1.0" 1169 | } 1170 | }, 1171 | "strip-ansi": { 1172 | "version": "3.0.1", 1173 | "bundled": true, 1174 | "optional": true, 1175 | "requires": { 1176 | "ansi-regex": "^2.0.0" 1177 | } 1178 | }, 1179 | "strip-json-comments": { 1180 | "version": "2.0.1", 1181 | "bundled": true, 1182 | "optional": true 1183 | }, 1184 | "tar": { 1185 | "version": "4.4.8", 1186 | "bundled": true, 1187 | "optional": true, 1188 | "requires": { 1189 | "chownr": "^1.1.1", 1190 | "fs-minipass": "^1.2.5", 1191 | "minipass": "^2.3.4", 1192 | "minizlib": "^1.1.1", 1193 | "mkdirp": "^0.5.0", 1194 | "safe-buffer": "^5.1.2", 1195 | "yallist": "^3.0.2" 1196 | } 1197 | }, 1198 | "util-deprecate": { 1199 | "version": "1.0.2", 1200 | "bundled": true, 1201 | "optional": true 1202 | }, 1203 | "wide-align": { 1204 | "version": "1.1.3", 1205 | "bundled": true, 1206 | "optional": true, 1207 | "requires": { 1208 | "string-width": "^1.0.2 || 2" 1209 | } 1210 | }, 1211 | "wrappy": { 1212 | "version": "1.0.2", 1213 | "bundled": true, 1214 | "optional": true 1215 | }, 1216 | "yallist": { 1217 | "version": "3.0.3", 1218 | "bundled": true, 1219 | "optional": true 1220 | } 1221 | } 1222 | }, 1223 | "get-stream": { 1224 | "version": "3.0.0", 1225 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", 1226 | "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" 1227 | }, 1228 | "get-value": { 1229 | "version": "2.0.6", 1230 | "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", 1231 | "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" 1232 | }, 1233 | "glob-parent": { 1234 | "version": "3.1.0", 1235 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", 1236 | "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", 1237 | "requires": { 1238 | "is-glob": "^3.1.0", 1239 | "path-dirname": "^1.0.0" 1240 | }, 1241 | "dependencies": { 1242 | "is-glob": { 1243 | "version": "3.1.0", 1244 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", 1245 | "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", 1246 | "requires": { 1247 | "is-extglob": "^2.1.0" 1248 | } 1249 | } 1250 | } 1251 | }, 1252 | "global-dirs": { 1253 | "version": "0.1.1", 1254 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", 1255 | "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", 1256 | "requires": { 1257 | "ini": "^1.3.4" 1258 | } 1259 | }, 1260 | "got": { 1261 | "version": "6.7.1", 1262 | "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", 1263 | "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", 1264 | "requires": { 1265 | "create-error-class": "^3.0.0", 1266 | "duplexer3": "^0.1.4", 1267 | "get-stream": "^3.0.0", 1268 | "is-redirect": "^1.0.0", 1269 | "is-retry-allowed": "^1.0.0", 1270 | "is-stream": "^1.0.0", 1271 | "lowercase-keys": "^1.0.0", 1272 | "safe-buffer": "^5.0.1", 1273 | "timed-out": "^4.0.0", 1274 | "unzip-response": "^2.0.1", 1275 | "url-parse-lax": "^1.0.0" 1276 | } 1277 | }, 1278 | "graceful-fs": { 1279 | "version": "4.2.2", 1280 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", 1281 | "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==" 1282 | }, 1283 | "has-flag": { 1284 | "version": "3.0.0", 1285 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1286 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1287 | }, 1288 | "has-value": { 1289 | "version": "1.0.0", 1290 | "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", 1291 | "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", 1292 | "requires": { 1293 | "get-value": "^2.0.6", 1294 | "has-values": "^1.0.0", 1295 | "isobject": "^3.0.0" 1296 | } 1297 | }, 1298 | "has-values": { 1299 | "version": "1.0.0", 1300 | "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", 1301 | "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", 1302 | "requires": { 1303 | "is-number": "^3.0.0", 1304 | "kind-of": "^4.0.0" 1305 | }, 1306 | "dependencies": { 1307 | "kind-of": { 1308 | "version": "4.0.0", 1309 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", 1310 | "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", 1311 | "requires": { 1312 | "is-buffer": "^1.1.5" 1313 | } 1314 | } 1315 | } 1316 | }, 1317 | "http-errors": { 1318 | "version": "1.7.2", 1319 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 1320 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 1321 | "requires": { 1322 | "depd": "~1.1.2", 1323 | "inherits": "2.0.3", 1324 | "setprototypeof": "1.1.1", 1325 | "statuses": ">= 1.5.0 < 2", 1326 | "toidentifier": "1.0.0" 1327 | } 1328 | }, 1329 | "iconv-lite": { 1330 | "version": "0.4.24", 1331 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1332 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1333 | "requires": { 1334 | "safer-buffer": ">= 2.1.2 < 3" 1335 | } 1336 | }, 1337 | "ignore-by-default": { 1338 | "version": "1.0.1", 1339 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1340 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" 1341 | }, 1342 | "import-lazy": { 1343 | "version": "2.1.0", 1344 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", 1345 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" 1346 | }, 1347 | "imurmurhash": { 1348 | "version": "0.1.4", 1349 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1350 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" 1351 | }, 1352 | "inherits": { 1353 | "version": "2.0.3", 1354 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1355 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1356 | }, 1357 | "ini": { 1358 | "version": "1.3.5", 1359 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", 1360 | "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" 1361 | }, 1362 | "ipaddr.js": { 1363 | "version": "1.9.0", 1364 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", 1365 | "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" 1366 | }, 1367 | "is-accessor-descriptor": { 1368 | "version": "0.1.6", 1369 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", 1370 | "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", 1371 | "requires": { 1372 | "kind-of": "^3.0.2" 1373 | }, 1374 | "dependencies": { 1375 | "kind-of": { 1376 | "version": "3.2.2", 1377 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1378 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1379 | "requires": { 1380 | "is-buffer": "^1.1.5" 1381 | } 1382 | } 1383 | } 1384 | }, 1385 | "is-binary-path": { 1386 | "version": "1.0.1", 1387 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", 1388 | "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", 1389 | "requires": { 1390 | "binary-extensions": "^1.0.0" 1391 | } 1392 | }, 1393 | "is-buffer": { 1394 | "version": "1.1.6", 1395 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 1396 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" 1397 | }, 1398 | "is-ci": { 1399 | "version": "1.2.1", 1400 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", 1401 | "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", 1402 | "requires": { 1403 | "ci-info": "^1.5.0" 1404 | } 1405 | }, 1406 | "is-data-descriptor": { 1407 | "version": "0.1.4", 1408 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", 1409 | "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", 1410 | "requires": { 1411 | "kind-of": "^3.0.2" 1412 | }, 1413 | "dependencies": { 1414 | "kind-of": { 1415 | "version": "3.2.2", 1416 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1417 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1418 | "requires": { 1419 | "is-buffer": "^1.1.5" 1420 | } 1421 | } 1422 | } 1423 | }, 1424 | "is-descriptor": { 1425 | "version": "0.1.6", 1426 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", 1427 | "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", 1428 | "requires": { 1429 | "is-accessor-descriptor": "^0.1.6", 1430 | "is-data-descriptor": "^0.1.4", 1431 | "kind-of": "^5.0.0" 1432 | }, 1433 | "dependencies": { 1434 | "kind-of": { 1435 | "version": "5.1.0", 1436 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", 1437 | "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" 1438 | } 1439 | } 1440 | }, 1441 | "is-extendable": { 1442 | "version": "0.1.1", 1443 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", 1444 | "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" 1445 | }, 1446 | "is-extglob": { 1447 | "version": "2.1.1", 1448 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1449 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" 1450 | }, 1451 | "is-fullwidth-code-point": { 1452 | "version": "2.0.0", 1453 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1454 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" 1455 | }, 1456 | "is-glob": { 1457 | "version": "4.0.1", 1458 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 1459 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 1460 | "requires": { 1461 | "is-extglob": "^2.1.1" 1462 | } 1463 | }, 1464 | "is-installed-globally": { 1465 | "version": "0.1.0", 1466 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", 1467 | "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", 1468 | "requires": { 1469 | "global-dirs": "^0.1.0", 1470 | "is-path-inside": "^1.0.0" 1471 | } 1472 | }, 1473 | "is-npm": { 1474 | "version": "1.0.0", 1475 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", 1476 | "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" 1477 | }, 1478 | "is-number": { 1479 | "version": "3.0.0", 1480 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", 1481 | "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", 1482 | "requires": { 1483 | "kind-of": "^3.0.2" 1484 | }, 1485 | "dependencies": { 1486 | "kind-of": { 1487 | "version": "3.2.2", 1488 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1489 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1490 | "requires": { 1491 | "is-buffer": "^1.1.5" 1492 | } 1493 | } 1494 | } 1495 | }, 1496 | "is-obj": { 1497 | "version": "1.0.1", 1498 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", 1499 | "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" 1500 | }, 1501 | "is-path-inside": { 1502 | "version": "1.0.1", 1503 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", 1504 | "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", 1505 | "requires": { 1506 | "path-is-inside": "^1.0.1" 1507 | } 1508 | }, 1509 | "is-plain-object": { 1510 | "version": "2.0.4", 1511 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", 1512 | "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", 1513 | "requires": { 1514 | "isobject": "^3.0.1" 1515 | } 1516 | }, 1517 | "is-redirect": { 1518 | "version": "1.0.0", 1519 | "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", 1520 | "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" 1521 | }, 1522 | "is-retry-allowed": { 1523 | "version": "1.1.0", 1524 | "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", 1525 | "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=" 1526 | }, 1527 | "is-stream": { 1528 | "version": "1.1.0", 1529 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 1530 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 1531 | }, 1532 | "is-windows": { 1533 | "version": "1.0.2", 1534 | "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", 1535 | "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" 1536 | }, 1537 | "isarray": { 1538 | "version": "1.0.0", 1539 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", 1540 | "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" 1541 | }, 1542 | "isexe": { 1543 | "version": "2.0.0", 1544 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1545 | "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" 1546 | }, 1547 | "isobject": { 1548 | "version": "3.0.1", 1549 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", 1550 | "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" 1551 | }, 1552 | "kind-of": { 1553 | "version": "6.0.2", 1554 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", 1555 | "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" 1556 | }, 1557 | "latest-version": { 1558 | "version": "3.1.0", 1559 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", 1560 | "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", 1561 | "requires": { 1562 | "package-json": "^4.0.0" 1563 | } 1564 | }, 1565 | "lowercase-keys": { 1566 | "version": "1.0.1", 1567 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", 1568 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" 1569 | }, 1570 | "lru-cache": { 1571 | "version": "4.1.5", 1572 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", 1573 | "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", 1574 | "requires": { 1575 | "pseudomap": "^1.0.2", 1576 | "yallist": "^2.1.2" 1577 | } 1578 | }, 1579 | "make-dir": { 1580 | "version": "1.3.0", 1581 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", 1582 | "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", 1583 | "requires": { 1584 | "pify": "^3.0.0" 1585 | } 1586 | }, 1587 | "map-cache": { 1588 | "version": "0.2.2", 1589 | "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", 1590 | "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" 1591 | }, 1592 | "map-visit": { 1593 | "version": "1.0.0", 1594 | "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", 1595 | "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", 1596 | "requires": { 1597 | "object-visit": "^1.0.0" 1598 | } 1599 | }, 1600 | "media-typer": { 1601 | "version": "0.3.0", 1602 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 1603 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 1604 | }, 1605 | "merge-descriptors": { 1606 | "version": "1.0.1", 1607 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1608 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 1609 | }, 1610 | "methods": { 1611 | "version": "1.1.2", 1612 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1613 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 1614 | }, 1615 | "micromatch": { 1616 | "version": "3.1.10", 1617 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", 1618 | "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", 1619 | "requires": { 1620 | "arr-diff": "^4.0.0", 1621 | "array-unique": "^0.3.2", 1622 | "braces": "^2.3.1", 1623 | "define-property": "^2.0.2", 1624 | "extend-shallow": "^3.0.2", 1625 | "extglob": "^2.0.4", 1626 | "fragment-cache": "^0.2.1", 1627 | "kind-of": "^6.0.2", 1628 | "nanomatch": "^1.2.9", 1629 | "object.pick": "^1.3.0", 1630 | "regex-not": "^1.0.0", 1631 | "snapdragon": "^0.8.1", 1632 | "to-regex": "^3.0.2" 1633 | } 1634 | }, 1635 | "mime": { 1636 | "version": "1.6.0", 1637 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1638 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 1639 | }, 1640 | "mime-db": { 1641 | "version": "1.40.0", 1642 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", 1643 | "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" 1644 | }, 1645 | "mime-types": { 1646 | "version": "2.1.24", 1647 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", 1648 | "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", 1649 | "requires": { 1650 | "mime-db": "1.40.0" 1651 | } 1652 | }, 1653 | "minimatch": { 1654 | "version": "3.0.4", 1655 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 1656 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 1657 | "requires": { 1658 | "brace-expansion": "^1.1.7" 1659 | } 1660 | }, 1661 | "minimist": { 1662 | "version": "1.2.0", 1663 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", 1664 | "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" 1665 | }, 1666 | "mixin-deep": { 1667 | "version": "1.3.2", 1668 | "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", 1669 | "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", 1670 | "requires": { 1671 | "for-in": "^1.0.2", 1672 | "is-extendable": "^1.0.1" 1673 | }, 1674 | "dependencies": { 1675 | "is-extendable": { 1676 | "version": "1.0.1", 1677 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", 1678 | "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", 1679 | "requires": { 1680 | "is-plain-object": "^2.0.4" 1681 | } 1682 | } 1683 | } 1684 | }, 1685 | "ms": { 1686 | "version": "2.0.0", 1687 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1688 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 1689 | }, 1690 | "nan": { 1691 | "version": "2.14.0", 1692 | "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", 1693 | "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", 1694 | "optional": true 1695 | }, 1696 | "nanomatch": { 1697 | "version": "1.2.13", 1698 | "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", 1699 | "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", 1700 | "requires": { 1701 | "arr-diff": "^4.0.0", 1702 | "array-unique": "^0.3.2", 1703 | "define-property": "^2.0.2", 1704 | "extend-shallow": "^3.0.2", 1705 | "fragment-cache": "^0.2.1", 1706 | "is-windows": "^1.0.2", 1707 | "kind-of": "^6.0.2", 1708 | "object.pick": "^1.3.0", 1709 | "regex-not": "^1.0.0", 1710 | "snapdragon": "^0.8.1", 1711 | "to-regex": "^3.0.1" 1712 | } 1713 | }, 1714 | "negotiator": { 1715 | "version": "0.6.2", 1716 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 1717 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 1718 | }, 1719 | "nodemon": { 1720 | "version": "1.19.1", 1721 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.1.tgz", 1722 | "integrity": "sha512-/DXLzd/GhiaDXXbGId5BzxP1GlsqtMGM9zTmkWrgXtSqjKmGSbLicM/oAy4FR0YWm14jCHRwnR31AHS2dYFHrg==", 1723 | "requires": { 1724 | "chokidar": "^2.1.5", 1725 | "debug": "^3.1.0", 1726 | "ignore-by-default": "^1.0.1", 1727 | "minimatch": "^3.0.4", 1728 | "pstree.remy": "^1.1.6", 1729 | "semver": "^5.5.0", 1730 | "supports-color": "^5.2.0", 1731 | "touch": "^3.1.0", 1732 | "undefsafe": "^2.0.2", 1733 | "update-notifier": "^2.5.0" 1734 | }, 1735 | "dependencies": { 1736 | "debug": { 1737 | "version": "3.2.6", 1738 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", 1739 | "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", 1740 | "requires": { 1741 | "ms": "^2.1.1" 1742 | } 1743 | }, 1744 | "ms": { 1745 | "version": "2.1.2", 1746 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1747 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1748 | } 1749 | } 1750 | }, 1751 | "nopt": { 1752 | "version": "1.0.10", 1753 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", 1754 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", 1755 | "requires": { 1756 | "abbrev": "1" 1757 | } 1758 | }, 1759 | "normalize-path": { 1760 | "version": "3.0.0", 1761 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1762 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" 1763 | }, 1764 | "npm-run-path": { 1765 | "version": "2.0.2", 1766 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", 1767 | "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", 1768 | "requires": { 1769 | "path-key": "^2.0.0" 1770 | } 1771 | }, 1772 | "object-copy": { 1773 | "version": "0.1.0", 1774 | "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", 1775 | "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", 1776 | "requires": { 1777 | "copy-descriptor": "^0.1.0", 1778 | "define-property": "^0.2.5", 1779 | "kind-of": "^3.0.3" 1780 | }, 1781 | "dependencies": { 1782 | "define-property": { 1783 | "version": "0.2.5", 1784 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", 1785 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", 1786 | "requires": { 1787 | "is-descriptor": "^0.1.0" 1788 | } 1789 | }, 1790 | "kind-of": { 1791 | "version": "3.2.2", 1792 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 1793 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 1794 | "requires": { 1795 | "is-buffer": "^1.1.5" 1796 | } 1797 | } 1798 | } 1799 | }, 1800 | "object-visit": { 1801 | "version": "1.0.1", 1802 | "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", 1803 | "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", 1804 | "requires": { 1805 | "isobject": "^3.0.0" 1806 | } 1807 | }, 1808 | "object.pick": { 1809 | "version": "1.3.0", 1810 | "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", 1811 | "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", 1812 | "requires": { 1813 | "isobject": "^3.0.1" 1814 | } 1815 | }, 1816 | "on-finished": { 1817 | "version": "2.3.0", 1818 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 1819 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 1820 | "requires": { 1821 | "ee-first": "1.1.1" 1822 | } 1823 | }, 1824 | "p-finally": { 1825 | "version": "1.0.0", 1826 | "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", 1827 | "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" 1828 | }, 1829 | "package-json": { 1830 | "version": "4.0.1", 1831 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", 1832 | "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", 1833 | "requires": { 1834 | "got": "^6.7.1", 1835 | "registry-auth-token": "^3.0.1", 1836 | "registry-url": "^3.0.3", 1837 | "semver": "^5.1.0" 1838 | } 1839 | }, 1840 | "parseurl": { 1841 | "version": "1.3.3", 1842 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1843 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 1844 | }, 1845 | "pascalcase": { 1846 | "version": "0.1.1", 1847 | "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", 1848 | "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" 1849 | }, 1850 | "path-dirname": { 1851 | "version": "1.0.2", 1852 | "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", 1853 | "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" 1854 | }, 1855 | "path-is-absolute": { 1856 | "version": "1.0.1", 1857 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1858 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 1859 | }, 1860 | "path-is-inside": { 1861 | "version": "1.0.2", 1862 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", 1863 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" 1864 | }, 1865 | "path-key": { 1866 | "version": "2.0.1", 1867 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", 1868 | "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" 1869 | }, 1870 | "path-to-regexp": { 1871 | "version": "0.1.7", 1872 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1873 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 1874 | }, 1875 | "pify": { 1876 | "version": "3.0.0", 1877 | "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", 1878 | "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" 1879 | }, 1880 | "posix-character-classes": { 1881 | "version": "0.1.1", 1882 | "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", 1883 | "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" 1884 | }, 1885 | "prepend-http": { 1886 | "version": "1.0.4", 1887 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", 1888 | "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" 1889 | }, 1890 | "process-nextick-args": { 1891 | "version": "2.0.1", 1892 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", 1893 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" 1894 | }, 1895 | "proxy-addr": { 1896 | "version": "2.0.5", 1897 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", 1898 | "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", 1899 | "requires": { 1900 | "forwarded": "~0.1.2", 1901 | "ipaddr.js": "1.9.0" 1902 | } 1903 | }, 1904 | "pseudomap": { 1905 | "version": "1.0.2", 1906 | "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", 1907 | "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" 1908 | }, 1909 | "pstree.remy": { 1910 | "version": "1.1.7", 1911 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.7.tgz", 1912 | "integrity": "sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A==" 1913 | }, 1914 | "qs": { 1915 | "version": "6.7.0", 1916 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 1917 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 1918 | }, 1919 | "range-parser": { 1920 | "version": "1.2.1", 1921 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1922 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 1923 | }, 1924 | "raw-body": { 1925 | "version": "2.4.0", 1926 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 1927 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 1928 | "requires": { 1929 | "bytes": "3.1.0", 1930 | "http-errors": "1.7.2", 1931 | "iconv-lite": "0.4.24", 1932 | "unpipe": "1.0.0" 1933 | } 1934 | }, 1935 | "rc": { 1936 | "version": "1.2.8", 1937 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 1938 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 1939 | "requires": { 1940 | "deep-extend": "^0.6.0", 1941 | "ini": "~1.3.0", 1942 | "minimist": "^1.2.0", 1943 | "strip-json-comments": "~2.0.1" 1944 | } 1945 | }, 1946 | "readable-stream": { 1947 | "version": "2.3.6", 1948 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", 1949 | "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", 1950 | "requires": { 1951 | "core-util-is": "~1.0.0", 1952 | "inherits": "~2.0.3", 1953 | "isarray": "~1.0.0", 1954 | "process-nextick-args": "~2.0.0", 1955 | "safe-buffer": "~5.1.1", 1956 | "string_decoder": "~1.1.1", 1957 | "util-deprecate": "~1.0.1" 1958 | } 1959 | }, 1960 | "readdirp": { 1961 | "version": "2.2.1", 1962 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", 1963 | "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", 1964 | "requires": { 1965 | "graceful-fs": "^4.1.11", 1966 | "micromatch": "^3.1.10", 1967 | "readable-stream": "^2.0.2" 1968 | } 1969 | }, 1970 | "regex-not": { 1971 | "version": "1.0.2", 1972 | "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", 1973 | "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", 1974 | "requires": { 1975 | "extend-shallow": "^3.0.2", 1976 | "safe-regex": "^1.1.0" 1977 | } 1978 | }, 1979 | "registry-auth-token": { 1980 | "version": "3.4.0", 1981 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", 1982 | "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", 1983 | "requires": { 1984 | "rc": "^1.1.6", 1985 | "safe-buffer": "^5.0.1" 1986 | } 1987 | }, 1988 | "registry-url": { 1989 | "version": "3.1.0", 1990 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", 1991 | "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", 1992 | "requires": { 1993 | "rc": "^1.0.1" 1994 | } 1995 | }, 1996 | "remove-trailing-separator": { 1997 | "version": "1.1.0", 1998 | "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", 1999 | "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" 2000 | }, 2001 | "repeat-element": { 2002 | "version": "1.1.3", 2003 | "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", 2004 | "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" 2005 | }, 2006 | "repeat-string": { 2007 | "version": "1.6.1", 2008 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", 2009 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" 2010 | }, 2011 | "resolve-url": { 2012 | "version": "0.2.1", 2013 | "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", 2014 | "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" 2015 | }, 2016 | "ret": { 2017 | "version": "0.1.15", 2018 | "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", 2019 | "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" 2020 | }, 2021 | "safe-buffer": { 2022 | "version": "5.1.2", 2023 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2024 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2025 | }, 2026 | "safe-regex": { 2027 | "version": "1.1.0", 2028 | "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", 2029 | "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", 2030 | "requires": { 2031 | "ret": "~0.1.10" 2032 | } 2033 | }, 2034 | "safer-buffer": { 2035 | "version": "2.1.2", 2036 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2037 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2038 | }, 2039 | "semver": { 2040 | "version": "5.7.1", 2041 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2042 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" 2043 | }, 2044 | "semver-diff": { 2045 | "version": "2.1.0", 2046 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", 2047 | "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", 2048 | "requires": { 2049 | "semver": "^5.0.3" 2050 | } 2051 | }, 2052 | "send": { 2053 | "version": "0.17.1", 2054 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 2055 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 2056 | "requires": { 2057 | "debug": "2.6.9", 2058 | "depd": "~1.1.2", 2059 | "destroy": "~1.0.4", 2060 | "encodeurl": "~1.0.2", 2061 | "escape-html": "~1.0.3", 2062 | "etag": "~1.8.1", 2063 | "fresh": "0.5.2", 2064 | "http-errors": "~1.7.2", 2065 | "mime": "1.6.0", 2066 | "ms": "2.1.1", 2067 | "on-finished": "~2.3.0", 2068 | "range-parser": "~1.2.1", 2069 | "statuses": "~1.5.0" 2070 | }, 2071 | "dependencies": { 2072 | "ms": { 2073 | "version": "2.1.1", 2074 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 2075 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 2076 | } 2077 | } 2078 | }, 2079 | "serve-static": { 2080 | "version": "1.14.1", 2081 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 2082 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 2083 | "requires": { 2084 | "encodeurl": "~1.0.2", 2085 | "escape-html": "~1.0.3", 2086 | "parseurl": "~1.3.3", 2087 | "send": "0.17.1" 2088 | } 2089 | }, 2090 | "set-value": { 2091 | "version": "2.0.1", 2092 | "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", 2093 | "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", 2094 | "requires": { 2095 | "extend-shallow": "^2.0.1", 2096 | "is-extendable": "^0.1.1", 2097 | "is-plain-object": "^2.0.3", 2098 | "split-string": "^3.0.1" 2099 | }, 2100 | "dependencies": { 2101 | "extend-shallow": { 2102 | "version": "2.0.1", 2103 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 2104 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 2105 | "requires": { 2106 | "is-extendable": "^0.1.0" 2107 | } 2108 | } 2109 | } 2110 | }, 2111 | "setprototypeof": { 2112 | "version": "1.1.1", 2113 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 2114 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 2115 | }, 2116 | "shebang-command": { 2117 | "version": "1.2.0", 2118 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", 2119 | "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", 2120 | "requires": { 2121 | "shebang-regex": "^1.0.0" 2122 | } 2123 | }, 2124 | "shebang-regex": { 2125 | "version": "1.0.0", 2126 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", 2127 | "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" 2128 | }, 2129 | "signal-exit": { 2130 | "version": "3.0.2", 2131 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", 2132 | "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" 2133 | }, 2134 | "snapdragon": { 2135 | "version": "0.8.2", 2136 | "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", 2137 | "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", 2138 | "requires": { 2139 | "base": "^0.11.1", 2140 | "debug": "^2.2.0", 2141 | "define-property": "^0.2.5", 2142 | "extend-shallow": "^2.0.1", 2143 | "map-cache": "^0.2.2", 2144 | "source-map": "^0.5.6", 2145 | "source-map-resolve": "^0.5.0", 2146 | "use": "^3.1.0" 2147 | }, 2148 | "dependencies": { 2149 | "define-property": { 2150 | "version": "0.2.5", 2151 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", 2152 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", 2153 | "requires": { 2154 | "is-descriptor": "^0.1.0" 2155 | } 2156 | }, 2157 | "extend-shallow": { 2158 | "version": "2.0.1", 2159 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 2160 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 2161 | "requires": { 2162 | "is-extendable": "^0.1.0" 2163 | } 2164 | } 2165 | } 2166 | }, 2167 | "snapdragon-node": { 2168 | "version": "2.1.1", 2169 | "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", 2170 | "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", 2171 | "requires": { 2172 | "define-property": "^1.0.0", 2173 | "isobject": "^3.0.0", 2174 | "snapdragon-util": "^3.0.1" 2175 | }, 2176 | "dependencies": { 2177 | "define-property": { 2178 | "version": "1.0.0", 2179 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", 2180 | "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", 2181 | "requires": { 2182 | "is-descriptor": "^1.0.0" 2183 | } 2184 | }, 2185 | "is-accessor-descriptor": { 2186 | "version": "1.0.0", 2187 | "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", 2188 | "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", 2189 | "requires": { 2190 | "kind-of": "^6.0.0" 2191 | } 2192 | }, 2193 | "is-data-descriptor": { 2194 | "version": "1.0.0", 2195 | "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", 2196 | "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", 2197 | "requires": { 2198 | "kind-of": "^6.0.0" 2199 | } 2200 | }, 2201 | "is-descriptor": { 2202 | "version": "1.0.2", 2203 | "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", 2204 | "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", 2205 | "requires": { 2206 | "is-accessor-descriptor": "^1.0.0", 2207 | "is-data-descriptor": "^1.0.0", 2208 | "kind-of": "^6.0.2" 2209 | } 2210 | } 2211 | } 2212 | }, 2213 | "snapdragon-util": { 2214 | "version": "3.0.1", 2215 | "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", 2216 | "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", 2217 | "requires": { 2218 | "kind-of": "^3.2.0" 2219 | }, 2220 | "dependencies": { 2221 | "kind-of": { 2222 | "version": "3.2.2", 2223 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 2224 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 2225 | "requires": { 2226 | "is-buffer": "^1.1.5" 2227 | } 2228 | } 2229 | } 2230 | }, 2231 | "source-map": { 2232 | "version": "0.5.7", 2233 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", 2234 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" 2235 | }, 2236 | "source-map-resolve": { 2237 | "version": "0.5.2", 2238 | "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", 2239 | "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", 2240 | "requires": { 2241 | "atob": "^2.1.1", 2242 | "decode-uri-component": "^0.2.0", 2243 | "resolve-url": "^0.2.1", 2244 | "source-map-url": "^0.4.0", 2245 | "urix": "^0.1.0" 2246 | } 2247 | }, 2248 | "source-map-url": { 2249 | "version": "0.4.0", 2250 | "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", 2251 | "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" 2252 | }, 2253 | "split-string": { 2254 | "version": "3.1.0", 2255 | "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", 2256 | "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", 2257 | "requires": { 2258 | "extend-shallow": "^3.0.0" 2259 | } 2260 | }, 2261 | "static-extend": { 2262 | "version": "0.1.2", 2263 | "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", 2264 | "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", 2265 | "requires": { 2266 | "define-property": "^0.2.5", 2267 | "object-copy": "^0.1.0" 2268 | }, 2269 | "dependencies": { 2270 | "define-property": { 2271 | "version": "0.2.5", 2272 | "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", 2273 | "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", 2274 | "requires": { 2275 | "is-descriptor": "^0.1.0" 2276 | } 2277 | } 2278 | } 2279 | }, 2280 | "statuses": { 2281 | "version": "1.5.0", 2282 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2283 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 2284 | }, 2285 | "string-width": { 2286 | "version": "2.1.1", 2287 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 2288 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 2289 | "requires": { 2290 | "is-fullwidth-code-point": "^2.0.0", 2291 | "strip-ansi": "^4.0.0" 2292 | } 2293 | }, 2294 | "string_decoder": { 2295 | "version": "1.1.1", 2296 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", 2297 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", 2298 | "requires": { 2299 | "safe-buffer": "~5.1.0" 2300 | } 2301 | }, 2302 | "strip-ansi": { 2303 | "version": "4.0.0", 2304 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 2305 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 2306 | "requires": { 2307 | "ansi-regex": "^3.0.0" 2308 | } 2309 | }, 2310 | "strip-eof": { 2311 | "version": "1.0.0", 2312 | "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", 2313 | "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" 2314 | }, 2315 | "strip-json-comments": { 2316 | "version": "2.0.1", 2317 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2318 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" 2319 | }, 2320 | "supports-color": { 2321 | "version": "5.5.0", 2322 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2323 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2324 | "requires": { 2325 | "has-flag": "^3.0.0" 2326 | } 2327 | }, 2328 | "term-size": { 2329 | "version": "1.2.0", 2330 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", 2331 | "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", 2332 | "requires": { 2333 | "execa": "^0.7.0" 2334 | } 2335 | }, 2336 | "timed-out": { 2337 | "version": "4.0.1", 2338 | "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", 2339 | "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" 2340 | }, 2341 | "to-object-path": { 2342 | "version": "0.3.0", 2343 | "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", 2344 | "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", 2345 | "requires": { 2346 | "kind-of": "^3.0.2" 2347 | }, 2348 | "dependencies": { 2349 | "kind-of": { 2350 | "version": "3.2.2", 2351 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", 2352 | "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", 2353 | "requires": { 2354 | "is-buffer": "^1.1.5" 2355 | } 2356 | } 2357 | } 2358 | }, 2359 | "to-regex": { 2360 | "version": "3.0.2", 2361 | "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", 2362 | "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", 2363 | "requires": { 2364 | "define-property": "^2.0.2", 2365 | "extend-shallow": "^3.0.2", 2366 | "regex-not": "^1.0.2", 2367 | "safe-regex": "^1.1.0" 2368 | } 2369 | }, 2370 | "to-regex-range": { 2371 | "version": "2.1.1", 2372 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", 2373 | "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", 2374 | "requires": { 2375 | "is-number": "^3.0.0", 2376 | "repeat-string": "^1.6.1" 2377 | } 2378 | }, 2379 | "toidentifier": { 2380 | "version": "1.0.0", 2381 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 2382 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 2383 | }, 2384 | "touch": { 2385 | "version": "3.1.0", 2386 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", 2387 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", 2388 | "requires": { 2389 | "nopt": "~1.0.10" 2390 | } 2391 | }, 2392 | "type-is": { 2393 | "version": "1.6.18", 2394 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2395 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2396 | "requires": { 2397 | "media-typer": "0.3.0", 2398 | "mime-types": "~2.1.24" 2399 | } 2400 | }, 2401 | "undefsafe": { 2402 | "version": "2.0.2", 2403 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.2.tgz", 2404 | "integrity": "sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY=", 2405 | "requires": { 2406 | "debug": "^2.2.0" 2407 | } 2408 | }, 2409 | "union-value": { 2410 | "version": "1.0.1", 2411 | "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", 2412 | "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", 2413 | "requires": { 2414 | "arr-union": "^3.1.0", 2415 | "get-value": "^2.0.6", 2416 | "is-extendable": "^0.1.1", 2417 | "set-value": "^2.0.1" 2418 | } 2419 | }, 2420 | "unique-string": { 2421 | "version": "1.0.0", 2422 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", 2423 | "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", 2424 | "requires": { 2425 | "crypto-random-string": "^1.0.0" 2426 | } 2427 | }, 2428 | "unpipe": { 2429 | "version": "1.0.0", 2430 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2431 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 2432 | }, 2433 | "unset-value": { 2434 | "version": "1.0.0", 2435 | "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", 2436 | "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", 2437 | "requires": { 2438 | "has-value": "^0.3.1", 2439 | "isobject": "^3.0.0" 2440 | }, 2441 | "dependencies": { 2442 | "has-value": { 2443 | "version": "0.3.1", 2444 | "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", 2445 | "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", 2446 | "requires": { 2447 | "get-value": "^2.0.3", 2448 | "has-values": "^0.1.4", 2449 | "isobject": "^2.0.0" 2450 | }, 2451 | "dependencies": { 2452 | "isobject": { 2453 | "version": "2.1.0", 2454 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", 2455 | "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", 2456 | "requires": { 2457 | "isarray": "1.0.0" 2458 | } 2459 | } 2460 | } 2461 | }, 2462 | "has-values": { 2463 | "version": "0.1.4", 2464 | "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", 2465 | "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" 2466 | } 2467 | } 2468 | }, 2469 | "unzip-response": { 2470 | "version": "2.0.1", 2471 | "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", 2472 | "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" 2473 | }, 2474 | "upath": { 2475 | "version": "1.1.2", 2476 | "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", 2477 | "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==" 2478 | }, 2479 | "update-notifier": { 2480 | "version": "2.5.0", 2481 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", 2482 | "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", 2483 | "requires": { 2484 | "boxen": "^1.2.1", 2485 | "chalk": "^2.0.1", 2486 | "configstore": "^3.0.0", 2487 | "import-lazy": "^2.1.0", 2488 | "is-ci": "^1.0.10", 2489 | "is-installed-globally": "^0.1.0", 2490 | "is-npm": "^1.0.0", 2491 | "latest-version": "^3.0.0", 2492 | "semver-diff": "^2.0.0", 2493 | "xdg-basedir": "^3.0.0" 2494 | } 2495 | }, 2496 | "urix": { 2497 | "version": "0.1.0", 2498 | "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", 2499 | "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" 2500 | }, 2501 | "url-parse-lax": { 2502 | "version": "1.0.0", 2503 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", 2504 | "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", 2505 | "requires": { 2506 | "prepend-http": "^1.0.1" 2507 | } 2508 | }, 2509 | "use": { 2510 | "version": "3.1.1", 2511 | "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", 2512 | "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" 2513 | }, 2514 | "util-deprecate": { 2515 | "version": "1.0.2", 2516 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2517 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 2518 | }, 2519 | "utils-merge": { 2520 | "version": "1.0.1", 2521 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 2522 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 2523 | }, 2524 | "vary": { 2525 | "version": "1.1.2", 2526 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 2527 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 2528 | }, 2529 | "which": { 2530 | "version": "1.3.1", 2531 | "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", 2532 | "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", 2533 | "requires": { 2534 | "isexe": "^2.0.0" 2535 | } 2536 | }, 2537 | "widest-line": { 2538 | "version": "2.0.1", 2539 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", 2540 | "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", 2541 | "requires": { 2542 | "string-width": "^2.1.1" 2543 | } 2544 | }, 2545 | "write-file-atomic": { 2546 | "version": "2.4.3", 2547 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", 2548 | "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", 2549 | "requires": { 2550 | "graceful-fs": "^4.1.11", 2551 | "imurmurhash": "^0.1.4", 2552 | "signal-exit": "^3.0.2" 2553 | } 2554 | }, 2555 | "xdg-basedir": { 2556 | "version": "3.0.0", 2557 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", 2558 | "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" 2559 | }, 2560 | "yallist": { 2561 | "version": "2.1.2", 2562 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", 2563 | "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" 2564 | } 2565 | } 2566 | } 2567 | -------------------------------------------------------------------------------- /calculator/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "calculator", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "calculator.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.19.0", 13 | "express": "^4.17.1", 14 | "nodemon": "^1.19.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /favicon_io/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/.DS_Store -------------------------------------------------------------------------------- /favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /favicon_io/cloud (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/cloud (1).png -------------------------------------------------------------------------------- /favicon_io/cloudy (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/cloudy (1).png -------------------------------------------------------------------------------- /favicon_io/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/css.png -------------------------------------------------------------------------------- /favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /favicon_io/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/github.png -------------------------------------------------------------------------------- /favicon_io/html-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/html-5.png -------------------------------------------------------------------------------- /favicon_io/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/html.png -------------------------------------------------------------------------------- /favicon_io/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/java.png -------------------------------------------------------------------------------- /favicon_io/lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/lake.png -------------------------------------------------------------------------------- /favicon_io/logo-via-logohub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/logo-via-logohub.png -------------------------------------------------------------------------------- /favicon_io/mountain (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/mountain (1).png -------------------------------------------------------------------------------- /favicon_io/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/mountains.png -------------------------------------------------------------------------------- /favicon_io/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/web.png -------------------------------------------------------------------------------- /favicon_io/www-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/favicon_io/www-click.png -------------------------------------------------------------------------------- /html-personal-site/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/html-personal-site/.DS_Store -------------------------------------------------------------------------------- /html-personal-site/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Personal Site 7 | 8 | 9 | 10 | 11 | Sabrina profile picture 12 | 13 |

14 | My contact details 15 |

16 | 17 |

Fone: +55 (61) 982458372

18 | 19 |

Twitter: link

20 | 21 |

Linkedin: link

22 | 23 |

Instagram: link

24 | 25 |
26 | 27 |
28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 |
36 | 37 |
38 | 39 | 40 |
41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /html-personal-site/css/style.css: -------------------------------------------------------------------------------- 1 | 2 | body{ 3 | background-color: #216583; 4 | } 5 | 6 | hr{ 7 | border-color: #293462; 8 | border-style: none; 9 | border-top-style: dotted; 10 | border-width: 5px; 11 | width: 5%; 12 | 13 | } 14 | 15 | h1, h2, h3{ 16 | color: #f76262; 17 | } 18 | -------------------------------------------------------------------------------- /html-personal-site/hobbies.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Personal Site 7 | 8 | 9 | 10 | 11 | Sabrina profile picture 12 | 13 |

My Hobbies

14 |
    15 |
  1. Read about everthing
  2. 16 |
  3. Watch Series and movies
  4. 17 |
  5. Swimming
  6. 18 |
19 | 20 | Download a pdf file (html cheatsheet) 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /html-personal-site/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/html-personal-site/images/.DS_Store -------------------------------------------------------------------------------- /html-personal-site/images/sabrina-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/html-personal-site/images/sabrina-picture.jpg -------------------------------------------------------------------------------- /html-personal-site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Personal Site 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 23 | 24 | 25 |
14 | Sabrina profile picture 15 | 17 |

Sabrina Veras linkedin

18 |

Software Engineering

19 |

Full-stack developer

20 | 21 |

I am a front-end and back-end developer and I love developer web site. I learn about desing to be come more full.

22 |
26 | 27 | 36 |
37 | 38 |

Course the I made

39 | 40 | 45 | 46 |
47 | 48 |

Work Experience

49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 |
YearsWork
2015-2019UCB student
2019The complete 2019 web development bootcamp
68 | 69 |
70 | 71 |

Skills

72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 |
HTML⭐️⭐️⭐️⭐️⭐️
CSS⭐️⭐️⭐️⭐️⭐️
JAVASCRIPT⭐️⭐️⭐️⭐️⭐️
BOOTSTRAP⭐️⭐️
91 | 92 |
93 | 94 |

My Hobbies

95 | 96 |

Contact

97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/index.js -------------------------------------------------------------------------------- /into-to-node/index.js: -------------------------------------------------------------------------------- 1 | var superheroes = require('superheroes'); 2 | var supervillains = require('supervillains') 3 | 4 | var mysuperheroes = superheroes.random() 5 | var mysupervillains = supervillains.random() 6 | 7 | console.log(mysuperheroes); 8 | console.log(mysupervillains); 9 | -------------------------------------------------------------------------------- /into-to-node/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "into-to-node", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "superheroes": { 8 | "version": "3.0.0", 9 | "resolved": "https://registry.npmjs.org/superheroes/-/superheroes-3.0.0.tgz", 10 | "integrity": "sha512-XXXzeKHMnf0rmZItYkGU803JlqYpoxvxzKFoe6k8C4bolcKfLZH716Rm4DyNJhxPTurbzDEB/QC7TXGsoei+ew==", 11 | "requires": { 12 | "unique-random-array": "^2.0.0" 13 | } 14 | }, 15 | "supervillains": { 16 | "version": "3.0.0", 17 | "resolved": "https://registry.npmjs.org/supervillains/-/supervillains-3.0.0.tgz", 18 | "integrity": "sha512-L3vram05h2SLW8eeHff0JmXA+P0kYI/Be9t5JXLFmV7vJ3tnBC1es5Sg0ym70CgeolowMObR5Jl+xpEv5bSvZg==", 19 | "requires": { 20 | "unique-random-array": "^2.0.0" 21 | } 22 | }, 23 | "unique-random": { 24 | "version": "2.1.0", 25 | "resolved": "https://registry.npmjs.org/unique-random/-/unique-random-2.1.0.tgz", 26 | "integrity": "sha512-iQ1ZgWac3b8YxGThecQFRQiqgk6xFERRwHZIWeVVsqlbmgCRl0PY13R4mUkodNgctmg5b5odG1nyW/IbOxQTqg==" 27 | }, 28 | "unique-random-array": { 29 | "version": "2.0.0", 30 | "resolved": "https://registry.npmjs.org/unique-random-array/-/unique-random-array-2.0.0.tgz", 31 | "integrity": "sha512-xR87O95fZ7hljw84J8r1YDXrvffPLWN513BNOP4Bv0KcgG5dyEUrHwsvP7mVAOKg4Y80uqRbpUk0GKr8il70qg==", 32 | "requires": { 33 | "unique-random": "^2.1.0" 34 | } 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /into-to-node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "into-to-node", 3 | "version": "1.0.0", 4 | "description": "This is a into to node project ", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Sabrina", 10 | "license": "ISC", 11 | "dependencies": { 12 | "superheroes": "^3.0.0", 13 | "supervillains": "^3.0.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /jquery/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery 6 | 7 | 8 | 9 |

Hello Wold!

10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /jquery/main.js: -------------------------------------------------------------------------------- 1 | console.log('i am here'); 2 | 3 | $(document).keypress(function(event){ 4 | 5 | $('h1').text(event.key); 6 | }); 7 | -------------------------------------------------------------------------------- /jquery/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | margin: 0; 3 | padding: 0; 4 | text-align: center; 5 | } 6 | -------------------------------------------------------------------------------- /learn/learn.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Bootstrap 14 | 15 | 16 | 17 |
18 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 19 |
20 | 21 |
22 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 43 | -------------------------------------------------------------------------------- /my-express-server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-express-server", 3 | "version": "1.0.0", 4 | "description": "My first express server", 5 | "main": "server.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "node server.js" 9 | }, 10 | "author": "Sabrina Veras", 11 | "license": "ISC", 12 | "dependencies": { 13 | "express": "^4.17.1", 14 | "nodemon": "^1.19.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /my-express-server/server.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | 3 | const app = express(); 4 | 5 | app.get('/', function(request, response){ 6 | //console.log(request); 7 | response.send('

Hello World!

'); 8 | }); 9 | 10 | app.get('/contact', function(request, response){ 11 | response.send('

Contact me at: sabrina_veras@live.com

'); 12 | }) 13 | 14 | app.get('/about', function(request, response){ 15 | response.send('

About me: I am Sabrina and a love code.

'); 16 | }) 17 | 18 | app.get('/hobbies', function(request, response){ 19 | response.send('

Hoppies: A like to read and swim.

'); 20 | }) 21 | 22 | app.listen(5000, function(){ 23 | console.log('Example app listening on port 5000!'); 24 | }) 25 | -------------------------------------------------------------------------------- /newsletter-signup/app.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const bodyParser = require('body-parser') 3 | const request = require('request') 4 | 5 | const app = express() 6 | 7 | app.use(express.static("public")) 8 | 9 | app.use(bodyParser.urlencoded({ extended: true })) 10 | 11 | app.get('/', function(req, res){ 12 | res.sendFile(__dirname + "/signup.html") 13 | }) 14 | 15 | app.post('/', function(req, res){ 16 | let firstName = req.body.firstName 17 | let lastName = req.body.lastName 18 | let email = req.body.email 19 | 20 | console.log(firstName, lastName, email); 21 | 22 | let data = { 23 | members: [ 24 | {email_address: email, 25 | status: 'subscribed', 26 | merge_fields: { 27 | FNAME: firstName, 28 | LNAME: lastName 29 | }} 30 | ] 31 | }; 32 | 33 | let jsonData = JSON.stringify(data); 34 | 35 | let options = { 36 | url: 'https://us3.api.mailchimp.com/3.0/lists/LISTID', 37 | method: 'POST', 38 | headers:{ 39 | "Authorization": "sabrina_veras@live.com API KEY" 40 | }, 41 | body: jsonData 42 | } 43 | 44 | request(options, function(error, response, body){ 45 | if(error){ 46 | console.log(error) 47 | res.sendFile(__dirname + '/failure.html') 48 | }else{ 49 | console.log(response.statusCode); 50 | if(response.statusCode === 200){ 51 | res.sendFile(__dirname + '/success.html') 52 | }else{ 53 | res.sendFile(__dirname + '/failure.html') 54 | } 55 | } 56 | }) 57 | }) 58 | 59 | 60 | app.post('/failure', function(req, res){ 61 | res.redirect('/'); 62 | }) 63 | 64 | app.listen(5000, function(){ 65 | console.log('server is running on port 5000'); 66 | }) 67 | 68 | -------------------------------------------------------------------------------- /newsletter-signup/failure.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Failure 12 | 13 | 14 |
15 |
16 |

Uh oh!

17 |

There was a problem signing you up. Please try again or contact the developer!

18 | 19 |
20 | 21 |
22 |
23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /newsletter-signup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "newsletter-signup", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parse": "^0.1.0", 13 | "express": "^4.17.1", 14 | "nodemon": "^1.19.1", 15 | "request": "^2.88.0" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /newsletter-signup/public/css/style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | } 5 | 6 | body { 7 | display: -ms-flexbox; 8 | display: flex; 9 | -ms-flex-align: center; 10 | align-items: center; 11 | padding-top: 40px; 12 | padding-bottom: 40px; 13 | background-color: #f5f5f5; 14 | } 15 | 16 | .form-signin { 17 | width: 100%; 18 | max-width: 330px; 19 | padding: 15px; 20 | margin: auto; 21 | } 22 | .form-signin .checkbox { 23 | font-weight: 400; 24 | } 25 | .form-signin .form-control { 26 | position: relative; 27 | box-sizing: border-box; 28 | height: auto; 29 | padding: 10px; 30 | font-size: 16px; 31 | } 32 | .form-signin .form-control:focus { 33 | z-index: 2; 34 | } 35 | .top{ 36 | margin-bottom: -1px; 37 | border-bottom-right-radius: 0; 38 | border-bottom-left-radius: 0; 39 | } 40 | 41 | .middle{ 42 | border-radius: 0; 43 | margin-bottom: -1px; 44 | } 45 | 46 | .bottom{ 47 | margin-bottom: 10px; 48 | border-top-left-radius: 0; 49 | border-top-right-radius: 0; 50 | } 51 | .bd-placeholder-img { 52 | font-size: 1.125rem; 53 | text-anchor: middle; 54 | -webkit-user-select: none; 55 | -moz-user-select: none; 56 | -ms-user-select: none; 57 | user-select: none; 58 | } 59 | 60 | @media (min-width: 768px) { 61 | .bd-placeholder-img-lg { 62 | font-size: 3.5rem; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /newsletter-signup/public/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/newsletter-signup/public/images/application.png -------------------------------------------------------------------------------- /newsletter-signup/signup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Newsletter Signup 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 |

Signup to my Newsletter

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 |

© 2017-2019

36 |
37 | 38 | 39 | -------------------------------------------------------------------------------- /newsletter-signup/success.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Failure 12 | 13 | 14 |
15 |
16 |

Awesome

17 |

You've been succesfully signed up to the newsletter, look forwards to lots of awesome content!

18 |
19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /personalwebsite/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/.DS_Store -------------------------------------------------------------------------------- /personalwebsite/CSS_My_Site_End_Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/CSS_My_Site_End_Results.pdf -------------------------------------------------------------------------------- /personalwebsite/css/master.css: -------------------------------------------------------------------------------- 1 | body{ 2 | margin: 0; 3 | padding: 0; 4 | text-align: center; 5 | } 6 | 7 | /* 8 | font-family: 'Nunito', sans-serif; 9 | font-family: 'Pacifico', cursive; 10 | */ 11 | p{ 12 | font-family: 'Nunito', sans-serif; 13 | } 14 | 15 | h2{ 16 | font-family: 'Nunito', sans-serif; 17 | font-size: 33px; 18 | color: #66BFBF; 19 | } 20 | 21 | h3{ 22 | font-family: 'Nunito', sans-serif; 23 | color: #66BFBF; 24 | font-weight: 600; 25 | } 26 | 27 | hr{ 28 | margin-top: 60px; 29 | margin-bottom: 60px; 30 | width: 5%; 31 | border: 10px dotted #EAF6F6; 32 | border-bottom: none; 33 | } 34 | 35 | header{ 36 | display: inline-grid; 37 | background-color: #EAF6F6; 38 | border-bottom-right-radius: 10px; 39 | border-bottom-left-radius: 10px; 40 | } 41 | 42 | header span{ 43 | text-decoration: underline; 44 | } 45 | 46 | header h1{ 47 | font-family: 'Pacifico', cursive; 48 | font-size: 60px; 49 | color: #66BFBF; 50 | } 51 | 52 | .imgs-header{ 53 | display: flex; 54 | justify-content: center; 55 | } 56 | 57 | .img-cloud{ 58 | width: 10%; 59 | height: 10%; 60 | margin-right: 20px; 61 | } 62 | 63 | .img-cloud-with-sun{ 64 | width: 10%; 65 | height: 10%; 66 | margin-left: 20px; 67 | } 68 | 69 | /* about me section */ 70 | 71 | .about-me{ 72 | margin-top: 40px; 73 | } 74 | 75 | .img-about-me{ 76 | border-radius: 50%; 77 | } 78 | 79 | 80 | /* my skills section */ 81 | .skill-row{ 82 | width: 50%; 83 | margin: 100px auto; 84 | text-align: left; 85 | line-height: 2; 86 | } 87 | 88 | .skill-row img{ 89 | width: 25%; 90 | margin-right: 30px; 91 | margin-left: 30px; 92 | } 93 | 94 | .left{ 95 | float: left; 96 | } 97 | 98 | .right{ 99 | float: right; 100 | } 101 | 102 | 103 | /* contact-me section */ 104 | 105 | .contact-me h3{ 106 | margin-top: 20px; 107 | } 108 | 109 | .contact-me p{ 110 | margin-top: 40px; 111 | } 112 | 113 | .contact-me button{ 114 | margin-top: 40px; 115 | background-color: #66BFBF; 116 | color: #FFFFFF; 117 | border: none; 118 | border-radius: 8px; 119 | padding: 10px 20px 10px 20px; 120 | font-size: 20px; 121 | font-family: 'Nunito', sans-serif; 122 | } 123 | 124 | .contact-me button:hover{ 125 | background-color: #11CDD4; 126 | } 127 | 128 | /* footer */ 129 | 130 | footer{ 131 | margin-top: 60px; 132 | background-color: #66BFBF; 133 | padding: 50px 0 20px; 134 | border-top-right-radius: 10px; 135 | border-top-left-radius: 10px; 136 | } 137 | 138 | footer a{ 139 | text-decoration: none; 140 | color: #11999E; 141 | font-family: 'Nunito', sans-serif; 142 | margin: 10px 20px; 143 | } 144 | 145 | footer p{ 146 | margin: 25px 0 15px; 147 | color: #EAF6F6; 148 | font-size: 12px; 149 | } 150 | -------------------------------------------------------------------------------- /personalwebsite/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sabrina Veras 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |

I'm Sabrina Veras

16 |

a programmer.

17 |
18 | header-cloudy 19 | header-mountain 20 | header-cloud-with-sun 21 |
22 |
23 | 24 |
25 | about-me-sabrina 26 | 27 |

Hello.

28 | 29 |

30 | I am a full stack developer. This is my portfolio, enjoy! 31 |

32 | 33 |
34 |
35 | 36 |
37 |

My skills

38 | 39 |
40 | skill-code 41 | 42 |

Font End

43 |

44 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. 45 |

46 |
47 | 48 |
49 | skill-javascript 50 | 51 |

Javascript

52 |

53 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. 54 |

55 |
56 | 57 |
58 | skill-test 59 | 60 |

Scrum

61 |

62 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. 63 |

64 |
65 |
66 | skill-code 67 | 68 |

Talk to people

69 |

70 | Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. 71 |

72 |
73 | 74 |
75 |
76 | 77 |
78 |

Get In Touch

79 | 80 |

Lorem Ipsum is simply dummy text

81 | 82 |

83 | Lorem Ipsum is simply dummy text of the printing and typesetting industry
84 | Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. 85 |

86 | 87 | 88 | 89 |
90 | 91 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /personalwebsite/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/.DS_Store -------------------------------------------------------------------------------- /personalwebsite/images/cloud-with-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/cloud-with-sun.png -------------------------------------------------------------------------------- /personalwebsite/images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/cloud.png -------------------------------------------------------------------------------- /personalwebsite/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/code.png -------------------------------------------------------------------------------- /personalwebsite/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/favicon.ico -------------------------------------------------------------------------------- /personalwebsite/images/interview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/interview.png -------------------------------------------------------------------------------- /personalwebsite/images/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/javascript.png -------------------------------------------------------------------------------- /personalwebsite/images/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/mountain.png -------------------------------------------------------------------------------- /personalwebsite/images/sabrina-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/sabrina-picture.jpg -------------------------------------------------------------------------------- /personalwebsite/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/personalwebsite/images/test.png -------------------------------------------------------------------------------- /todolist-v1/app.js: -------------------------------------------------------------------------------- 1 | const express = require('express') 2 | const bodyParser = require('body-parser') 3 | const date = require(__dirname + "/date.js") 4 | 5 | const app = express() 6 | 7 | 8 | const items = ["By Food", "Cook Food", "Eat Food"] 9 | const workItems = []; 10 | 11 | app.set('view engine', 'ejs') 12 | 13 | app.use(bodyParser.urlencoded({ extended: true })) 14 | app.use(express.static("public")) 15 | 16 | app.get('/', function(req, res){ 17 | 18 | /*let today = new Date() 19 | 20 | let options = { 21 | weekday: 'long', 22 | day: 'numeric', 23 | month: 'long' 24 | } 25 | 26 | let day = today.toLocaleDateString("en-US", options);*/ 27 | 28 | 29 | const day = date.getDate() 30 | 31 | res.render('list', { listTitle: day , newlistItems: items}) 32 | }) 33 | 34 | app.post('/', function(req, res){ 35 | 36 | const item = req.body.newItem 37 | 38 | if(req.body.list === "Work"){ 39 | workItems.push(item) 40 | res.redirect("/work") 41 | }else{ 42 | items.push(item) 43 | res.redirect("/") 44 | } 45 | 46 | console.log(req.body.list); 47 | 48 | /* 49 | 50 | items.push(item) 51 | 52 | console.log(items); 53 | 54 | res.redirect("/")*/ 55 | }) 56 | 57 | app.get("/work", function(req, res){ 58 | 59 | res.render("list", { listTitle: "Work List", newlistItems: workItems}) 60 | 61 | }) 62 | 63 | app.post("/work", function(req, res){ 64 | 65 | const item = req.body.newItem; 66 | workItems 67 | }) 68 | 69 | app.listen(5000, function(){ 70 | console.log('server started on port 5000'); 71 | }) 72 | -------------------------------------------------------------------------------- /todolist-v1/date.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports.getDate = function(){ 3 | 4 | const today = new Date() 5 | 6 | const options = { 7 | weekday: 'long', 8 | day: 'numeric', 9 | month: 'long' 10 | } 11 | 12 | return today.toLocaleDateString("en-US", options) 13 | } 14 | 15 | module.exports.getDay = function(){ 16 | 17 | const today = new Date() 18 | 19 | const options = { 20 | weekday: 'long' 21 | } 22 | 23 | return today.toLocaleDateString("en-US", options) 24 | } 25 | -------------------------------------------------------------------------------- /todolist-v1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | To do list 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /todolist-v1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "secrets", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "body-parser": "^1.19.0", 13 | "ejs": "^2.6.2", 14 | "express": "^4.17.1", 15 | "nodemon": "^1.19.1" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /todolist-v1/public/css/styles.css: -------------------------------------------------------------------------------- 1 | html{ 2 | background-color: #E4E9FD; 3 | background-image: -webkit-linear-gradient(65deg, #A683E3 50%, #E4E9FD 50%); 4 | min-height: 100vh; 5 | font-family: 'helvetica neue'; 6 | } 7 | 8 | h1{ 9 | color: #FFFFFF; 10 | padding: 10px; 11 | } 12 | 13 | .box{ 14 | max-width: 400px; 15 | margin: 50px auto; 16 | background: white; 17 | border-radius: 5px; 18 | box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.3); 19 | } 20 | 21 | #heading{ 22 | background-color: #A683E3; 23 | text-align: center; 24 | } 25 | 26 | .item{ 27 | min-height: 70px; 28 | display: flex; 29 | align-items: center; 30 | border-bottom: 1px solid #F1F1F1; 31 | } 32 | 33 | .item:last-child{ 34 | border-bottom: 0; 35 | } 36 | 37 | input:checked+p{ 38 | text-decoration: line-through; 39 | text-decoration-color: #A683E3; 40 | } 41 | 42 | input[type="checkbox"]{ 43 | margin: 20px; 44 | } 45 | 46 | p{ 47 | margin: 0; 48 | padding: 20px; 49 | font-size: 20px; 50 | font-weight: 200; 51 | color: #00204A; 52 | } 53 | 54 | form{ 55 | text-align: center; 56 | margin-left: 20px; 57 | } 58 | 59 | button{ 60 | min-height: 50px; 61 | width: 50px; 62 | border-radius: 50%; 63 | border-color: transparent; 64 | background-color: #A683E3; 65 | color: #FFFFFF; 66 | font-size: 30px; 67 | text-align: center; 68 | padding-bottom: 6px; 69 | border-width: 0; 70 | } 71 | 72 | 73 | 74 | 75 | input[type="text"]{ 76 | text-align: center; 77 | height: 60px; 78 | top: 10px; 79 | border: none; 80 | background: transparent; 81 | font-size: 20px; 82 | font-weight: 200; 83 | width: 313px; 84 | } 85 | 86 | input[type="text"]:focus{ 87 | outline: none; 88 | box-shadow: inset 0 -3px 0 0 #A683E3; 89 | } 90 | 91 | ::placeholder{ 92 | color: grey; 93 | opacity: 1; 94 | } 95 | 96 | footer{ 97 | color: white; 98 | color: rgba(0, 0, 0, 0.5); 99 | text-align: center; 100 | } 101 | -------------------------------------------------------------------------------- /todolist-v1/views/about.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angelabauer/web-development-bootcamp/17bc36d8234ef10f70f66c401fb0838b3e48e823/todolist-v1/views/about.ejs -------------------------------------------------------------------------------- /todolist-v1/views/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /todolist-v1/views/header.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | To do List 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /todolist-v1/views/list.ejs: -------------------------------------------------------------------------------- 1 | <%- include("header") -%> 2 | 3 |
4 |

<%= listTitle %>

5 |
6 | 7 |
8 | 9 | <% for(var count=0; count 10 |
11 | 12 |

<%= newlistItems[count] %>

13 |
14 | <%} %> 15 | 16 |
17 | 18 | 19 | 20 |
21 | 22 |
23 | 24 | <%- include("footer") -%> 25 | --------------------------------------------------------------------------------