├── .vscode └── settings.json ├── Aulas(Powerpoint) ├── Aula_01_HTML_CSS.pptx ├── Aula_02­_HTML_Avançado_CSS.pptx ├── Aula_03_Layouts_e_Grids_com_CSS.pptx ├── Aula_04_Formulários_em_HTML_e_CSS.pptx ├── Aula_05­­_Introdução_ao_JavaScript.pptx ├── Aula_06­_Manipulação_de_DOM_com_JavaScript.pptx ├── Aula_07­_jQuery_A_Biblioteca_JavaScript.pptx └── Aula_08­_Responsividade_e_Mobile_First.pptx ├── Desafios ├── Desadio02.md └── Desafio01.md ├── LICENSE ├── Projeto ├── README.md └── super_mercado │ ├── backend │ ├── .env │ ├── node_modules │ │ ├── .bin │ │ │ ├── mime │ │ │ ├── mime.cmd │ │ │ ├── mime.ps1 │ │ │ ├── nodemon │ │ │ ├── nodemon.cmd │ │ │ ├── nodemon.ps1 │ │ │ ├── nodetouch │ │ │ ├── nodetouch.cmd │ │ │ ├── nodetouch.ps1 │ │ │ ├── semver │ │ │ ├── semver.cmd │ │ │ └── semver.ps1 │ │ ├── .package-lock.json │ │ ├── @mongodb-js │ │ │ └── saslprep │ │ │ │ ├── LICENSE │ │ │ │ ├── dist │ │ │ │ ├── .esm-wrapper.mjs │ │ │ │ ├── browser.d.ts │ │ │ │ ├── browser.d.ts.map │ │ │ │ ├── browser.js │ │ │ │ ├── browser.js.map │ │ │ │ ├── code-points-data-browser.d.ts │ │ │ │ ├── code-points-data-browser.d.ts.map │ │ │ │ ├── code-points-data-browser.js │ │ │ │ ├── code-points-data-browser.js.map │ │ │ │ ├── code-points-data.d.ts │ │ │ │ ├── code-points-data.d.ts.map │ │ │ │ ├── code-points-data.js │ │ │ │ ├── code-points-data.js.map │ │ │ │ ├── code-points-src.d.ts │ │ │ │ ├── code-points-src.d.ts.map │ │ │ │ ├── code-points-src.js │ │ │ │ ├── code-points-src.js.map │ │ │ │ ├── generate-code-points.d.ts │ │ │ │ ├── generate-code-points.d.ts.map │ │ │ │ ├── generate-code-points.js │ │ │ │ ├── generate-code-points.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── memory-code-points.d.ts │ │ │ │ ├── memory-code-points.d.ts.map │ │ │ │ ├── memory-code-points.js │ │ │ │ ├── memory-code-points.js.map │ │ │ │ ├── node.d.ts │ │ │ │ ├── node.d.ts.map │ │ │ │ ├── node.js │ │ │ │ ├── node.js.map │ │ │ │ ├── util.d.ts │ │ │ │ ├── util.d.ts.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── @types │ │ │ ├── webidl-conversions │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ └── package.json │ │ │ └── whatwg-url │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── lib │ │ │ │ ├── URL-impl.d.ts │ │ │ │ ├── URL.d.ts │ │ │ │ ├── URLSearchParams-impl.d.ts │ │ │ │ └── URLSearchParams.d.ts │ │ │ │ ├── package.json │ │ │ │ └── webidl2js-wrapper.d.ts │ │ ├── accepts │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── anymatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── array-flatten │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array-flatten.js │ │ │ └── package.json │ │ ├── balanced-match │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── binary-extensions │ │ │ ├── binary-extensions.json │ │ │ ├── binary-extensions.json.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── body-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── read.js │ │ │ │ └── types │ │ │ │ │ ├── json.js │ │ │ │ │ ├── raw.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── urlencoded.js │ │ │ └── package.json │ │ ├── brace-expansion │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── braces │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── compile.js │ │ │ │ ├── constants.js │ │ │ │ ├── expand.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── bson │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bson.d.ts │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── bson.bundle.js │ │ │ │ ├── bson.bundle.js.map │ │ │ │ ├── bson.cjs │ │ │ │ ├── bson.cjs.map │ │ │ │ ├── bson.mjs │ │ │ │ ├── bson.mjs.map │ │ │ │ ├── bson.rn.cjs │ │ │ │ └── bson.rn.cjs.map │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── binary.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bson_value.ts │ │ │ │ ├── code.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── db_ref.ts │ │ │ │ ├── decimal128.ts │ │ │ │ ├── double.ts │ │ │ │ ├── error.ts │ │ │ │ ├── extended_json.ts │ │ │ │ ├── index.ts │ │ │ │ ├── int_32.ts │ │ │ │ ├── long.ts │ │ │ │ ├── max_key.ts │ │ │ │ ├── min_key.ts │ │ │ │ ├── objectid.ts │ │ │ │ ├── parse_utf8.ts │ │ │ │ ├── parser │ │ │ │ │ ├── calculate_size.ts │ │ │ │ │ ├── deserializer.ts │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── parse_to_elements.ts │ │ │ │ │ ├── serializer.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── regexp.ts │ │ │ │ ├── symbol.ts │ │ │ │ ├── timestamp.ts │ │ │ │ └── utils │ │ │ │ │ ├── byte_utils.ts │ │ │ │ │ ├── latin.ts │ │ │ │ │ ├── node_byte_utils.ts │ │ │ │ │ ├── number_utils.ts │ │ │ │ │ ├── string_utils.ts │ │ │ │ │ └── web_byte_utils.ts │ │ │ └── vendor │ │ │ │ ├── base64 │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── base64.js │ │ │ │ └── package.json │ │ │ │ └── text-encoding │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ ├── encoding-indexes.js │ │ │ │ └── encoding.js │ │ │ │ └── package.json │ │ ├── bytes │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── call-bind-apply-helpers │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── actualApply.d.ts │ │ │ ├── actualApply.js │ │ │ ├── applyBind.d.ts │ │ │ ├── applyBind.js │ │ │ ├── functionApply.d.ts │ │ │ ├── functionApply.js │ │ │ ├── functionCall.d.ts │ │ │ ├── functionCall.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── reflectApply.d.ts │ │ │ ├── reflectApply.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── call-bound │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── chokidar │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── fsevents-handler.js │ │ │ │ └── nodefs-handler.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ └── index.d.ts │ │ ├── concat-map │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── example │ │ │ │ └── map.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── map.js │ │ ├── content-disposition │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── content-type │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie-signature │ │ │ ├── .npmignore │ │ │ ├── History.md │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cookie │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── cors │ │ │ ├── CONTRIBUTING.md │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── debug │ │ │ ├── .coveralls.yml │ │ │ ├── .eslintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── karma.conf.js │ │ │ ├── node.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── browser.js │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── inspector-log.js │ │ │ │ └── node.js │ │ ├── depd │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── browser │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── destroy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── dotenv │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README-es.md │ │ │ ├── README.md │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── lib │ │ │ │ ├── cli-options.js │ │ │ │ ├── env-options.js │ │ │ │ ├── main.d.ts │ │ │ │ └── main.js │ │ │ └── package.json │ │ ├── dunder-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── get.d.ts │ │ │ ├── get.js │ │ │ ├── package.json │ │ │ ├── set.d.ts │ │ │ ├── set.js │ │ │ ├── test │ │ │ │ ├── get.js │ │ │ │ ├── index.js │ │ │ │ └── set.js │ │ │ └── tsconfig.json │ │ ├── ee-first │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── encodeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── es-define-property │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── es-errors │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── eval.d.ts │ │ │ ├── eval.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── range.d.ts │ │ │ ├── range.js │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── syntax.d.ts │ │ │ ├── syntax.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ ├── tsconfig.json │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── uri.d.ts │ │ │ └── uri.js │ │ ├── es-object-atoms │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RequireObjectCoercible.d.ts │ │ │ ├── RequireObjectCoercible.js │ │ │ ├── ToObject.d.ts │ │ │ ├── ToObject.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isObject.d.ts │ │ │ ├── isObject.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── escape-html │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── etag │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── express │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── application.js │ │ │ │ ├── express.js │ │ │ │ ├── middleware │ │ │ │ │ ├── init.js │ │ │ │ │ └── query.js │ │ │ │ ├── request.js │ │ │ │ ├── response.js │ │ │ │ ├── router │ │ │ │ │ ├── index.js │ │ │ │ │ ├── layer.js │ │ │ │ │ └── route.js │ │ │ │ ├── utils.js │ │ │ │ └── view.js │ │ │ └── package.json │ │ ├── fill-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── finalhandler │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── forwarded │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── fresh │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── function-bind │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── SECURITY.md │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── implementation.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc │ │ │ │ └── index.js │ │ ├── get-intrinsic │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── GetIntrinsic.js │ │ ├── get-proto │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Object.getPrototypeOf.d.ts │ │ │ ├── Object.getPrototypeOf.js │ │ │ ├── README.md │ │ │ ├── Reflect.getPrototypeOf.d.ts │ │ │ ├── Reflect.getPrototypeOf.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── glob-parent │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── gopd │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── gOPD.d.ts │ │ │ ├── gOPD.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── has-flag │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── has-symbols │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── shams.d.ts │ │ │ ├── shams.js │ │ │ ├── test │ │ │ │ ├── index.js │ │ │ │ ├── shams │ │ │ │ │ ├── core-js.js │ │ │ │ │ └── get-own-property-symbols.js │ │ │ │ └── tests.js │ │ │ └── tsconfig.json │ │ ├── hasown │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── http-errors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── iconv-lite │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ └── utf7.js │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── extend-node.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ └── package.json │ │ ├── ignore-by-default │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── inherits │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inherits.js │ │ │ ├── inherits_browser.js │ │ │ └── package.json │ │ ├── ipaddr.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ipaddr.min.js │ │ │ ├── lib │ │ │ │ ├── ipaddr.js │ │ │ │ └── ipaddr.js.d.ts │ │ │ └── package.json │ │ ├── is-binary-path │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── is-extglob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── is-number │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── kareem │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── math-intrinsics │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── abs.d.ts │ │ │ ├── abs.js │ │ │ ├── constants │ │ │ │ ├── maxArrayLength.d.ts │ │ │ │ ├── maxArrayLength.js │ │ │ │ ├── maxSafeInteger.d.ts │ │ │ │ ├── maxSafeInteger.js │ │ │ │ ├── maxValue.d.ts │ │ │ │ └── maxValue.js │ │ │ ├── floor.d.ts │ │ │ ├── floor.js │ │ │ ├── isFinite.d.ts │ │ │ ├── isFinite.js │ │ │ ├── isInteger.d.ts │ │ │ ├── isInteger.js │ │ │ ├── isNaN.d.ts │ │ │ ├── isNaN.js │ │ │ ├── isNegativeZero.d.ts │ │ │ ├── isNegativeZero.js │ │ │ ├── max.d.ts │ │ │ ├── max.js │ │ │ ├── min.d.ts │ │ │ ├── min.js │ │ │ ├── mod.d.ts │ │ │ ├── mod.js │ │ │ ├── package.json │ │ │ ├── pow.d.ts │ │ │ ├── pow.js │ │ │ ├── round.d.ts │ │ │ ├── round.js │ │ │ ├── sign.d.ts │ │ │ ├── sign.js │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── media-typer │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── memory-pager │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── merge-descriptors │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── methods │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-db │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── db.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime-types │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── mime │ │ │ ├── .npmignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cli.js │ │ │ ├── mime.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── build.js │ │ │ │ └── test.js │ │ │ └── types.json │ │ ├── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── minimatch.js │ │ │ └── package.json │ │ ├── mongodb-connection-string-url │ │ │ ├── .esm-wrapper.mjs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── redact.d.ts │ │ │ │ ├── redact.js │ │ │ │ └── redact.js.map │ │ │ └── package.json │ │ ├── mongodb │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── etc │ │ │ │ └── prepare.js │ │ │ ├── lib │ │ │ │ ├── admin.js │ │ │ │ ├── admin.js.map │ │ │ │ ├── beta.d.ts │ │ │ │ ├── beta.js │ │ │ │ ├── beta.js.map │ │ │ │ ├── bson.js │ │ │ │ ├── bson.js.map │ │ │ │ ├── bulk │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── ordered.js │ │ │ │ │ ├── ordered.js.map │ │ │ │ │ ├── unordered.js │ │ │ │ │ └── unordered.js.map │ │ │ │ ├── change_stream.js │ │ │ │ ├── change_stream.js.map │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.js │ │ │ │ │ ├── auto_encrypter.js.map │ │ │ │ │ ├── client_encryption.js │ │ │ │ │ ├── client_encryption.js.map │ │ │ │ │ ├── crypto_callbacks.js │ │ │ │ │ ├── crypto_callbacks.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── mongocryptd_manager.js │ │ │ │ │ ├── mongocryptd_manager.js.map │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.js │ │ │ │ │ │ ├── aws.js.map │ │ │ │ │ │ ├── azure.js │ │ │ │ │ │ ├── azure.js.map │ │ │ │ │ │ ├── gcp.js │ │ │ │ │ │ ├── gcp.js.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── state_machine.js │ │ │ │ │ └── state_machine.js.map │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ │ ├── auth_provider.js.map │ │ │ │ │ │ ├── aws_temporary_credentials.js │ │ │ │ │ │ ├── aws_temporary_credentials.js.map │ │ │ │ │ │ ├── gssapi.js │ │ │ │ │ │ ├── gssapi.js.map │ │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ │ ├── mongo_credentials.js.map │ │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ │ ├── mongodb_aws.js.map │ │ │ │ │ │ ├── mongodb_oidc.js │ │ │ │ │ │ ├── mongodb_oidc.js.map │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.js │ │ │ │ │ │ │ ├── automated_callback_workflow.js.map │ │ │ │ │ │ │ ├── azure_machine_workflow.js │ │ │ │ │ │ │ ├── azure_machine_workflow.js.map │ │ │ │ │ │ │ ├── callback_workflow.js │ │ │ │ │ │ │ ├── callback_workflow.js.map │ │ │ │ │ │ │ ├── command_builders.js │ │ │ │ │ │ │ ├── command_builders.js.map │ │ │ │ │ │ │ ├── gcp_machine_workflow.js │ │ │ │ │ │ │ ├── gcp_machine_workflow.js.map │ │ │ │ │ │ │ ├── human_callback_workflow.js │ │ │ │ │ │ │ ├── human_callback_workflow.js.map │ │ │ │ │ │ │ ├── k8s_machine_workflow.js │ │ │ │ │ │ │ ├── k8s_machine_workflow.js.map │ │ │ │ │ │ │ ├── machine_workflow.js │ │ │ │ │ │ │ ├── machine_workflow.js.map │ │ │ │ │ │ │ ├── token_cache.js │ │ │ │ │ │ │ ├── token_cache.js.map │ │ │ │ │ │ │ ├── token_machine_workflow.js │ │ │ │ │ │ │ └── token_machine_workflow.js.map │ │ │ │ │ │ ├── plain.js │ │ │ │ │ │ ├── plain.js.map │ │ │ │ │ │ ├── providers.js │ │ │ │ │ │ ├── providers.js.map │ │ │ │ │ │ ├── scram.js │ │ │ │ │ │ ├── scram.js.map │ │ │ │ │ │ ├── x509.js │ │ │ │ │ │ └── x509.js.map │ │ │ │ │ ├── command_monitoring_events.js │ │ │ │ │ ├── command_monitoring_events.js.map │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── commands.js.map │ │ │ │ │ ├── connect.js │ │ │ │ │ ├── connect.js.map │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── connection.js.map │ │ │ │ │ ├── connection_pool.js │ │ │ │ │ ├── connection_pool.js.map │ │ │ │ │ ├── connection_pool_events.js │ │ │ │ │ ├── connection_pool_events.js.map │ │ │ │ │ ├── errors.js │ │ │ │ │ ├── errors.js.map │ │ │ │ │ ├── handshake │ │ │ │ │ │ ├── client_metadata.js │ │ │ │ │ │ └── client_metadata.js.map │ │ │ │ │ ├── metrics.js │ │ │ │ │ ├── metrics.js.map │ │ │ │ │ ├── stream_description.js │ │ │ │ │ ├── stream_description.js.map │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.js │ │ │ │ │ │ ├── compression.js.map │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── constants.js.map │ │ │ │ │ │ ├── on_data.js │ │ │ │ │ │ ├── on_data.js.map │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ └── document.js.map │ │ │ │ │ │ ├── responses.js │ │ │ │ │ │ ├── responses.js.map │ │ │ │ │ │ ├── shared.js │ │ │ │ │ │ └── shared.js.map │ │ │ │ ├── collection.js │ │ │ │ ├── collection.js.map │ │ │ │ ├── connection_string.js │ │ │ │ ├── connection_string.js.map │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.js │ │ │ │ │ ├── abstract_cursor.js.map │ │ │ │ │ ├── aggregation_cursor.js │ │ │ │ │ ├── aggregation_cursor.js.map │ │ │ │ │ ├── change_stream_cursor.js │ │ │ │ │ ├── change_stream_cursor.js.map │ │ │ │ │ ├── client_bulk_write_cursor.js │ │ │ │ │ ├── client_bulk_write_cursor.js.map │ │ │ │ │ ├── find_cursor.js │ │ │ │ │ ├── find_cursor.js.map │ │ │ │ │ ├── list_collections_cursor.js │ │ │ │ │ ├── list_collections_cursor.js.map │ │ │ │ │ ├── list_indexes_cursor.js │ │ │ │ │ ├── list_indexes_cursor.js.map │ │ │ │ │ ├── list_search_indexes_cursor.js │ │ │ │ │ ├── list_search_indexes_cursor.js.map │ │ │ │ │ ├── run_command_cursor.js │ │ │ │ │ └── run_command_cursor.js.map │ │ │ │ ├── db.js │ │ │ │ ├── db.js.map │ │ │ │ ├── deps.js │ │ │ │ ├── deps.js.map │ │ │ │ ├── encrypter.js │ │ │ │ ├── encrypter.js.map │ │ │ │ ├── error.js │ │ │ │ ├── error.js.map │ │ │ │ ├── explain.js │ │ │ │ ├── explain.js.map │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.js │ │ │ │ │ ├── download.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── upload.js │ │ │ │ │ └── upload.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── mongo_client.js │ │ │ │ ├── mongo_client.js.map │ │ │ │ ├── mongo_client_auth_providers.js │ │ │ │ ├── mongo_client_auth_providers.js.map │ │ │ │ ├── mongo_logger.js │ │ │ │ ├── mongo_logger.js.map │ │ │ │ ├── mongo_types.js │ │ │ │ ├── mongo_types.js.map │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.js │ │ │ │ │ ├── aggregate.js.map │ │ │ │ │ ├── bulk_write.js │ │ │ │ │ ├── bulk_write.js.map │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.js │ │ │ │ │ │ ├── client_bulk_write.js.map │ │ │ │ │ │ ├── command_builder.js │ │ │ │ │ │ ├── command_builder.js.map │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── common.js.map │ │ │ │ │ │ ├── executor.js │ │ │ │ │ │ ├── executor.js.map │ │ │ │ │ │ ├── results_merger.js │ │ │ │ │ │ └── results_merger.js.map │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── collections.js.map │ │ │ │ │ ├── command.js │ │ │ │ │ ├── command.js.map │ │ │ │ │ ├── count.js │ │ │ │ │ ├── count.js.map │ │ │ │ │ ├── create_collection.js │ │ │ │ │ ├── create_collection.js.map │ │ │ │ │ ├── delete.js │ │ │ │ │ ├── delete.js.map │ │ │ │ │ ├── distinct.js │ │ │ │ │ ├── distinct.js.map │ │ │ │ │ ├── drop.js │ │ │ │ │ ├── drop.js.map │ │ │ │ │ ├── estimated_document_count.js │ │ │ │ │ ├── estimated_document_count.js.map │ │ │ │ │ ├── execute_operation.js │ │ │ │ │ ├── execute_operation.js.map │ │ │ │ │ ├── find.js │ │ │ │ │ ├── find.js.map │ │ │ │ │ ├── find_and_modify.js │ │ │ │ │ ├── find_and_modify.js.map │ │ │ │ │ ├── get_more.js │ │ │ │ │ ├── get_more.js.map │ │ │ │ │ ├── indexes.js │ │ │ │ │ ├── indexes.js.map │ │ │ │ │ ├── insert.js │ │ │ │ │ ├── insert.js.map │ │ │ │ │ ├── is_capped.js │ │ │ │ │ ├── is_capped.js.map │ │ │ │ │ ├── kill_cursors.js │ │ │ │ │ ├── kill_cursors.js.map │ │ │ │ │ ├── list_collections.js │ │ │ │ │ ├── list_collections.js.map │ │ │ │ │ ├── list_databases.js │ │ │ │ │ ├── list_databases.js.map │ │ │ │ │ ├── operation.js │ │ │ │ │ ├── operation.js.map │ │ │ │ │ ├── options_operation.js │ │ │ │ │ ├── options_operation.js.map │ │ │ │ │ ├── profiling_level.js │ │ │ │ │ ├── profiling_level.js.map │ │ │ │ │ ├── remove_user.js │ │ │ │ │ ├── remove_user.js.map │ │ │ │ │ ├── rename.js │ │ │ │ │ ├── rename.js.map │ │ │ │ │ ├── run_command.js │ │ │ │ │ ├── run_command.js.map │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.js │ │ │ │ │ │ ├── create.js.map │ │ │ │ │ │ ├── drop.js │ │ │ │ │ │ ├── drop.js.map │ │ │ │ │ │ ├── update.js │ │ │ │ │ │ └── update.js.map │ │ │ │ │ ├── set_profiling_level.js │ │ │ │ │ ├── set_profiling_level.js.map │ │ │ │ │ ├── stats.js │ │ │ │ │ ├── stats.js.map │ │ │ │ │ ├── update.js │ │ │ │ │ ├── update.js.map │ │ │ │ │ ├── validate_collection.js │ │ │ │ │ └── validate_collection.js.map │ │ │ │ ├── read_concern.js │ │ │ │ ├── read_concern.js.map │ │ │ │ ├── read_preference.js │ │ │ │ ├── read_preference.js.map │ │ │ │ ├── resource_management.js │ │ │ │ ├── resource_management.js.map │ │ │ │ ├── sdam │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── events.js │ │ │ │ │ ├── events.js.map │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── monitor.js.map │ │ │ │ │ ├── server.js │ │ │ │ │ ├── server.js.map │ │ │ │ │ ├── server_description.js │ │ │ │ │ ├── server_description.js.map │ │ │ │ │ ├── server_selection.js │ │ │ │ │ ├── server_selection.js.map │ │ │ │ │ ├── server_selection_events.js │ │ │ │ │ ├── server_selection_events.js.map │ │ │ │ │ ├── srv_polling.js │ │ │ │ │ ├── srv_polling.js.map │ │ │ │ │ ├── topology.js │ │ │ │ │ ├── topology.js.map │ │ │ │ │ ├── topology_description.js │ │ │ │ │ └── topology_description.js.map │ │ │ │ ├── sessions.js │ │ │ │ ├── sessions.js.map │ │ │ │ ├── sort.js │ │ │ │ ├── sort.js.map │ │ │ │ ├── timeout.js │ │ │ │ ├── timeout.js.map │ │ │ │ ├── transactions.js │ │ │ │ ├── transactions.js.map │ │ │ │ ├── utils.js │ │ │ │ ├── utils.js.map │ │ │ │ ├── write_concern.js │ │ │ │ └── write_concern.js.map │ │ │ ├── mongodb.d.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── admin.ts │ │ │ │ ├── beta.ts │ │ │ │ ├── bson.ts │ │ │ │ ├── bulk │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── ordered.ts │ │ │ │ │ └── unordered.ts │ │ │ │ ├── change_stream.ts │ │ │ │ ├── client-side-encryption │ │ │ │ │ ├── auto_encrypter.ts │ │ │ │ │ ├── client_encryption.ts │ │ │ │ │ ├── crypto_callbacks.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── mongocryptd_manager.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── aws.ts │ │ │ │ │ │ ├── azure.ts │ │ │ │ │ │ ├── gcp.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── state_machine.ts │ │ │ │ ├── cmap │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── auth_provider.ts │ │ │ │ │ │ ├── aws_temporary_credentials.ts │ │ │ │ │ │ ├── gssapi.ts │ │ │ │ │ │ ├── mongo_credentials.ts │ │ │ │ │ │ ├── mongodb_aws.ts │ │ │ │ │ │ ├── mongodb_oidc.ts │ │ │ │ │ │ ├── mongodb_oidc │ │ │ │ │ │ │ ├── automated_callback_workflow.ts │ │ │ │ │ │ │ ├── azure_machine_workflow.ts │ │ │ │ │ │ │ ├── callback_workflow.ts │ │ │ │ │ │ │ ├── command_builders.ts │ │ │ │ │ │ │ ├── gcp_machine_workflow.ts │ │ │ │ │ │ │ ├── human_callback_workflow.ts │ │ │ │ │ │ │ ├── k8s_machine_workflow.ts │ │ │ │ │ │ │ ├── machine_workflow.ts │ │ │ │ │ │ │ ├── token_cache.ts │ │ │ │ │ │ │ └── token_machine_workflow.ts │ │ │ │ │ │ ├── plain.ts │ │ │ │ │ │ ├── providers.ts │ │ │ │ │ │ ├── scram.ts │ │ │ │ │ │ └── x509.ts │ │ │ │ │ ├── command_monitoring_events.ts │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── connection.ts │ │ │ │ │ ├── connection_pool.ts │ │ │ │ │ ├── connection_pool_events.ts │ │ │ │ │ ├── errors.ts │ │ │ │ │ ├── handshake │ │ │ │ │ │ └── client_metadata.ts │ │ │ │ │ ├── metrics.ts │ │ │ │ │ ├── stream_description.ts │ │ │ │ │ └── wire_protocol │ │ │ │ │ │ ├── compression.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── on_data.ts │ │ │ │ │ │ ├── on_demand │ │ │ │ │ │ └── document.ts │ │ │ │ │ │ ├── responses.ts │ │ │ │ │ │ └── shared.ts │ │ │ │ ├── collection.ts │ │ │ │ ├── connection_string.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── cursor │ │ │ │ │ ├── abstract_cursor.ts │ │ │ │ │ ├── aggregation_cursor.ts │ │ │ │ │ ├── change_stream_cursor.ts │ │ │ │ │ ├── client_bulk_write_cursor.ts │ │ │ │ │ ├── find_cursor.ts │ │ │ │ │ ├── list_collections_cursor.ts │ │ │ │ │ ├── list_indexes_cursor.ts │ │ │ │ │ ├── list_search_indexes_cursor.ts │ │ │ │ │ └── run_command_cursor.ts │ │ │ │ ├── db.ts │ │ │ │ ├── deps.ts │ │ │ │ ├── encrypter.ts │ │ │ │ ├── error.ts │ │ │ │ ├── explain.ts │ │ │ │ ├── gridfs │ │ │ │ │ ├── download.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── upload.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mongo_client.ts │ │ │ │ ├── mongo_client_auth_providers.ts │ │ │ │ ├── mongo_logger.ts │ │ │ │ ├── mongo_types.ts │ │ │ │ ├── operations │ │ │ │ │ ├── aggregate.ts │ │ │ │ │ ├── bulk_write.ts │ │ │ │ │ ├── client_bulk_write │ │ │ │ │ │ ├── client_bulk_write.ts │ │ │ │ │ │ ├── command_builder.ts │ │ │ │ │ │ ├── common.ts │ │ │ │ │ │ ├── executor.ts │ │ │ │ │ │ └── results_merger.ts │ │ │ │ │ ├── collections.ts │ │ │ │ │ ├── command.ts │ │ │ │ │ ├── count.ts │ │ │ │ │ ├── create_collection.ts │ │ │ │ │ ├── delete.ts │ │ │ │ │ ├── distinct.ts │ │ │ │ │ ├── drop.ts │ │ │ │ │ ├── estimated_document_count.ts │ │ │ │ │ ├── execute_operation.ts │ │ │ │ │ ├── find.ts │ │ │ │ │ ├── find_and_modify.ts │ │ │ │ │ ├── get_more.ts │ │ │ │ │ ├── indexes.ts │ │ │ │ │ ├── insert.ts │ │ │ │ │ ├── is_capped.ts │ │ │ │ │ ├── kill_cursors.ts │ │ │ │ │ ├── list_collections.ts │ │ │ │ │ ├── list_databases.ts │ │ │ │ │ ├── operation.ts │ │ │ │ │ ├── options_operation.ts │ │ │ │ │ ├── profiling_level.ts │ │ │ │ │ ├── remove_user.ts │ │ │ │ │ ├── rename.ts │ │ │ │ │ ├── run_command.ts │ │ │ │ │ ├── search_indexes │ │ │ │ │ │ ├── create.ts │ │ │ │ │ │ ├── drop.ts │ │ │ │ │ │ └── update.ts │ │ │ │ │ ├── set_profiling_level.ts │ │ │ │ │ ├── stats.ts │ │ │ │ │ ├── update.ts │ │ │ │ │ └── validate_collection.ts │ │ │ │ ├── read_concern.ts │ │ │ │ ├── read_preference.ts │ │ │ │ ├── resource_management.ts │ │ │ │ ├── sdam │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── events.ts │ │ │ │ │ ├── monitor.ts │ │ │ │ │ ├── server.ts │ │ │ │ │ ├── server_description.ts │ │ │ │ │ ├── server_selection.ts │ │ │ │ │ ├── server_selection_events.ts │ │ │ │ │ ├── srv_polling.ts │ │ │ │ │ ├── topology.ts │ │ │ │ │ └── topology_description.ts │ │ │ │ ├── sessions.ts │ │ │ │ ├── sort.ts │ │ │ │ ├── timeout.ts │ │ │ │ ├── transactions.ts │ │ │ │ ├── utils.ts │ │ │ │ └── write_concern.ts │ │ │ └── tsconfig.json │ │ ├── mongoose │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── browser.js │ │ │ ├── dist │ │ │ │ └── browser.umd.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── aggregate.js │ │ │ │ ├── browser.js │ │ │ │ ├── browserDocument.js │ │ │ │ ├── cast.js │ │ │ │ ├── cast │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── string.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── collection.js │ │ │ │ ├── connection.js │ │ │ │ ├── connectionState.js │ │ │ │ ├── constants.js │ │ │ │ ├── cursor │ │ │ │ │ ├── aggregationCursor.js │ │ │ │ │ ├── changeStream.js │ │ │ │ │ └── queryCursor.js │ │ │ │ ├── document.js │ │ │ │ ├── documentProvider.js │ │ │ │ ├── driver.js │ │ │ │ ├── drivers │ │ │ │ │ ├── SPEC.md │ │ │ │ │ ├── browser │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── decimal128.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── objectid.js │ │ │ │ │ └── node-mongodb-native │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── connection.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── error │ │ │ │ │ ├── browserMissingSchema.js │ │ │ │ │ ├── bulkSaveIncompleteError.js │ │ │ │ │ ├── bulkWriteError.js │ │ │ │ │ ├── cast.js │ │ │ │ │ ├── createCollectionsError.js │ │ │ │ │ ├── divergentArray.js │ │ │ │ │ ├── eachAsyncMultiError.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── invalidSchemaOption.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── missingSchema.js │ │ │ │ │ ├── mongooseError.js │ │ │ │ │ ├── notFound.js │ │ │ │ │ ├── objectExpected.js │ │ │ │ │ ├── objectParameter.js │ │ │ │ │ ├── overwriteModel.js │ │ │ │ │ ├── parallelSave.js │ │ │ │ │ ├── parallelValidate.js │ │ │ │ │ ├── serverSelection.js │ │ │ │ │ ├── setOptionError.js │ │ │ │ │ ├── strict.js │ │ │ │ │ ├── strictPopulate.js │ │ │ │ │ ├── syncIndexes.js │ │ │ │ │ ├── validation.js │ │ │ │ │ ├── validator.js │ │ │ │ │ └── version.js │ │ │ │ ├── helpers │ │ │ │ │ ├── aggregate │ │ │ │ │ │ ├── prepareDiscriminatorPipeline.js │ │ │ │ │ │ └── stringifyFunctionOperators.js │ │ │ │ │ ├── arrayDepth.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── createJSONSchemaTypeDefinition.js │ │ │ │ │ ├── cursor │ │ │ │ │ │ └── eachAsync.js │ │ │ │ │ ├── discriminator │ │ │ │ │ │ ├── applyEmbeddedDiscriminators.js │ │ │ │ │ │ ├── areDiscriminatorValuesEqual.js │ │ │ │ │ │ ├── checkEmbeddedDiscriminatorKeyProjection.js │ │ │ │ │ │ ├── getConstructor.js │ │ │ │ │ │ ├── getDiscriminatorByValue.js │ │ │ │ │ │ ├── getSchemaDiscriminatorByValue.js │ │ │ │ │ │ └── mergeDiscriminatorSchema.js │ │ │ │ │ ├── document │ │ │ │ │ │ ├── applyDefaults.js │ │ │ │ │ │ ├── applyTimestamps.js │ │ │ │ │ │ ├── applyVirtuals.js │ │ │ │ │ │ ├── cleanModifiedSubpaths.js │ │ │ │ │ │ ├── compile.js │ │ │ │ │ │ ├── getDeepestSubdocumentForPath.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ └── handleSpreadDoc.js │ │ │ │ │ ├── each.js │ │ │ │ │ ├── error │ │ │ │ │ │ └── combinePathErrors.js │ │ │ │ │ ├── firstKey.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── getConstructorName.js │ │ │ │ │ ├── getDefaultBulkwriteResult.js │ │ │ │ │ ├── getFunctionName.js │ │ │ │ │ ├── immediate.js │ │ │ │ │ ├── indexes │ │ │ │ │ │ ├── applySchemaCollation.js │ │ │ │ │ │ ├── decorateDiscriminatorIndexOptions.js │ │ │ │ │ │ ├── getRelatedIndexes.js │ │ │ │ │ │ ├── isDefaultIdIndex.js │ │ │ │ │ │ ├── isIndexEqual.js │ │ │ │ │ │ ├── isIndexSpecEqual.js │ │ │ │ │ │ ├── isTextIndex.js │ │ │ │ │ │ └── isTimeseriesIndex.js │ │ │ │ │ ├── isAsyncFunction.js │ │ │ │ │ ├── isBsonType.js │ │ │ │ │ ├── isMongooseObject.js │ │ │ │ │ ├── isObject.js │ │ │ │ │ ├── isPOJO.js │ │ │ │ │ ├── isPromise.js │ │ │ │ │ ├── isSimpleValidator.js │ │ │ │ │ ├── minimize.js │ │ │ │ │ ├── model │ │ │ │ │ │ ├── applyDefaultsToPOJO.js │ │ │ │ │ │ ├── applyHooks.js │ │ │ │ │ │ ├── applyMethods.js │ │ │ │ │ │ ├── applyStaticHooks.js │ │ │ │ │ │ ├── applyStatics.js │ │ │ │ │ │ ├── castBulkWrite.js │ │ │ │ │ │ ├── discriminator.js │ │ │ │ │ │ └── pushNestedArrayPaths.js │ │ │ │ │ ├── omitUndefined.js │ │ │ │ │ ├── once.js │ │ │ │ │ ├── parallelLimit.js │ │ │ │ │ ├── path │ │ │ │ │ │ ├── parentPaths.js │ │ │ │ │ │ └── setDottedPath.js │ │ │ │ │ ├── pluralize.js │ │ │ │ │ ├── populate │ │ │ │ │ │ ├── assignRawDocsToIdStructure.js │ │ │ │ │ │ ├── assignVals.js │ │ │ │ │ │ ├── createPopulateQueryFilter.js │ │ │ │ │ │ ├── getModelsMapForPopulate.js │ │ │ │ │ │ ├── getSchemaTypes.js │ │ │ │ │ │ ├── getVirtual.js │ │ │ │ │ │ ├── leanPopulateMap.js │ │ │ │ │ │ ├── lookupLocalFields.js │ │ │ │ │ │ ├── markArraySubdocsPopulated.js │ │ │ │ │ │ ├── modelNamesFromRefPath.js │ │ │ │ │ │ ├── removeDeselectedForeignField.js │ │ │ │ │ │ ├── setPopulatedVirtualValue.js │ │ │ │ │ │ ├── skipPopulateValue.js │ │ │ │ │ │ └── validateRef.js │ │ │ │ │ ├── printJestWarning.js │ │ │ │ │ ├── processConnectionOptions.js │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── applyProjection.js │ │ │ │ │ │ ├── hasIncludedChildren.js │ │ │ │ │ │ ├── isDefiningProjection.js │ │ │ │ │ │ ├── isExclusive.js │ │ │ │ │ │ ├── isInclusive.js │ │ │ │ │ │ ├── isNestedProjection.js │ │ │ │ │ │ ├── isPathExcluded.js │ │ │ │ │ │ ├── isPathSelectedInclusive.js │ │ │ │ │ │ ├── isSubpath.js │ │ │ │ │ │ └── parseProjection.js │ │ │ │ │ ├── promiseOrCallback.js │ │ │ │ │ ├── query │ │ │ │ │ │ ├── applyGlobalOption.js │ │ │ │ │ │ ├── cast$expr.js │ │ │ │ │ │ ├── castFilterPath.js │ │ │ │ │ │ ├── castUpdate.js │ │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ │ ├── handleImmutable.js │ │ │ │ │ │ ├── handleReadPreferenceAliases.js │ │ │ │ │ │ ├── hasDollarKeys.js │ │ │ │ │ │ ├── isOperator.js │ │ │ │ │ │ ├── sanitizeFilter.js │ │ │ │ │ │ ├── sanitizeProjection.js │ │ │ │ │ │ ├── selectPopulatedFields.js │ │ │ │ │ │ ├── trusted.js │ │ │ │ │ │ └── validOps.js │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── addAutoId.js │ │ │ │ │ │ ├── applyBuiltinPlugins.js │ │ │ │ │ │ ├── applyPlugins.js │ │ │ │ │ │ ├── applyReadConcern.js │ │ │ │ │ │ ├── applyWriteConcern.js │ │ │ │ │ │ ├── cleanPositionalOperators.js │ │ │ │ │ │ ├── getIndexes.js │ │ │ │ │ │ ├── getKeysInSchemaOrder.js │ │ │ │ │ │ ├── getPath.js │ │ │ │ │ │ ├── getSubdocumentStrictValue.js │ │ │ │ │ │ ├── handleIdOption.js │ │ │ │ │ │ ├── handleTimestampOption.js │ │ │ │ │ │ ├── idGetter.js │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── schematype │ │ │ │ │ │ └── handleImmutable.js │ │ │ │ │ ├── setDefaultsOnInsert.js │ │ │ │ │ ├── specialProperties.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ ├── timers.js │ │ │ │ │ ├── timestamps │ │ │ │ │ │ ├── setDocumentTimestamps.js │ │ │ │ │ │ └── setupTimestamps.js │ │ │ │ │ ├── topology │ │ │ │ │ │ ├── allServersUnknown.js │ │ │ │ │ │ ├── isAtlas.js │ │ │ │ │ │ └── isSSLError.js │ │ │ │ │ ├── update │ │ │ │ │ │ ├── applyTimestampsToChildren.js │ │ │ │ │ │ ├── applyTimestampsToUpdate.js │ │ │ │ │ │ ├── castArrayFilters.js │ │ │ │ │ │ ├── decorateUpdateWithVersionKey.js │ │ │ │ │ │ ├── modifiedPaths.js │ │ │ │ │ │ ├── moveImmutableProperties.js │ │ │ │ │ │ ├── removeUnusedArrayFilters.js │ │ │ │ │ │ └── updatedPathsByArrayFilter.js │ │ │ │ │ └── updateValidators.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── model.js │ │ │ │ ├── modifiedPathsSnapshot.js │ │ │ │ ├── mongoose.js │ │ │ │ ├── options.js │ │ │ │ ├── options │ │ │ │ │ ├── populateOptions.js │ │ │ │ │ ├── propertyOptions.js │ │ │ │ │ ├── saveOptions.js │ │ │ │ │ ├── schemaArrayOptions.js │ │ │ │ │ ├── schemaBufferOptions.js │ │ │ │ │ ├── schemaDateOptions.js │ │ │ │ │ ├── schemaDocumentArrayOptions.js │ │ │ │ │ ├── schemaMapOptions.js │ │ │ │ │ ├── schemaNumberOptions.js │ │ │ │ │ ├── schemaObjectIdOptions.js │ │ │ │ │ ├── schemaStringOptions.js │ │ │ │ │ ├── schemaSubdocumentOptions.js │ │ │ │ │ ├── schemaTypeOptions.js │ │ │ │ │ └── virtualOptions.js │ │ │ │ ├── plugins │ │ │ │ │ ├── index.js │ │ │ │ │ ├── saveSubdocs.js │ │ │ │ │ ├── sharding.js │ │ │ │ │ ├── trackTransaction.js │ │ │ │ │ └── validateBeforeSave.js │ │ │ │ ├── query.js │ │ │ │ ├── queryHelpers.js │ │ │ │ ├── schema.js │ │ │ │ ├── schema │ │ │ │ │ ├── array.js │ │ │ │ │ ├── bigint.js │ │ │ │ │ ├── boolean.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── date.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray.js │ │ │ │ │ ├── documentArrayElement.js │ │ │ │ │ ├── double.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── int32.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mixed.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── objectId.js │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── bitwise.js │ │ │ │ │ │ ├── exists.js │ │ │ │ │ │ ├── geospatial.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── text.js │ │ │ │ │ │ └── type.js │ │ │ │ │ ├── string.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ ├── symbols.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── schemaType.js │ │ │ │ ├── stateMachine.js │ │ │ │ ├── types │ │ │ │ │ ├── array │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── arraySubdocument.js │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── documentArray │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isMongooseDocumentArray.js │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── objectid.js │ │ │ │ │ ├── subdocument.js │ │ │ │ │ └── uuid.js │ │ │ │ ├── utils.js │ │ │ │ ├── validOptions.js │ │ │ │ └── virtualType.js │ │ │ ├── node_modules │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── types │ │ │ │ ├── aggregate.d.ts │ │ │ │ ├── augmentations.d.ts │ │ │ │ ├── callback.d.ts │ │ │ │ ├── collection.d.ts │ │ │ │ ├── connection.d.ts │ │ │ │ ├── cursor.d.ts │ │ │ │ ├── document.d.ts │ │ │ │ ├── error.d.ts │ │ │ │ ├── expressions.d.ts │ │ │ │ ├── helpers.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── indexes.d.ts │ │ │ │ ├── inferrawdoctype.d.ts │ │ │ │ ├── inferschematype.d.ts │ │ │ │ ├── middlewares.d.ts │ │ │ │ ├── models.d.ts │ │ │ │ ├── mongooseoptions.d.ts │ │ │ │ ├── pipelinestage.d.ts │ │ │ │ ├── populate.d.ts │ │ │ │ ├── query.d.ts │ │ │ │ ├── schemaoptions.d.ts │ │ │ │ ├── schematypes.d.ts │ │ │ │ ├── session.d.ts │ │ │ │ ├── types.d.ts │ │ │ │ ├── utility.d.ts │ │ │ │ ├── validation.d.ts │ │ │ │ └── virtuals.d.ts │ │ ├── mpath │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── index.js │ │ │ │ └── stringToParts.js │ │ ├── mquery │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── lib │ │ │ │ ├── collection │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ │ ├── env.js │ │ │ │ ├── mquery.js │ │ │ │ ├── permissions.js │ │ │ │ └── utils.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── ms │ │ │ ├── index.js │ │ │ ├── license.md │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── negotiator │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── charset.js │ │ │ │ ├── encoding.js │ │ │ │ ├── language.js │ │ │ │ └── mediaType.js │ │ │ └── package.json │ │ ├── nodemon │ │ │ ├── .prettierrc.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── nodemon.js │ │ │ │ └── windows-kill.exe │ │ │ ├── doc │ │ │ │ └── cli │ │ │ │ │ ├── authors.txt │ │ │ │ │ ├── config.txt │ │ │ │ │ ├── help.txt │ │ │ │ │ ├── logo.txt │ │ │ │ │ ├── options.txt │ │ │ │ │ ├── topics.txt │ │ │ │ │ ├── usage.txt │ │ │ │ │ └── whoami.txt │ │ │ ├── index.d.ts │ │ │ ├── jsconfig.json │ │ │ ├── lib │ │ │ │ ├── cli │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── config │ │ │ │ │ ├── command.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── exec.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── load.js │ │ │ │ ├── help │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── monitor │ │ │ │ │ ├── index.js │ │ │ │ │ ├── match.js │ │ │ │ │ ├── run.js │ │ │ │ │ ├── signals.js │ │ │ │ │ └── watch.js │ │ │ │ ├── nodemon.js │ │ │ │ ├── rules │ │ │ │ │ ├── add.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── parse.js │ │ │ │ ├── spawn.js │ │ │ │ ├── utils │ │ │ │ │ ├── bus.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── colour.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── log.js │ │ │ │ │ └── merge.js │ │ │ │ └── version.js │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── normalize-path │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── object-assign │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── object-inspect │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── example │ │ │ │ ├── all.js │ │ │ │ ├── circular.js │ │ │ │ ├── fn.js │ │ │ │ └── inspect.js │ │ │ ├── index.js │ │ │ ├── package-support.json │ │ │ ├── package.json │ │ │ ├── readme.markdown │ │ │ ├── test-core-js.js │ │ │ ├── test │ │ │ │ ├── bigint.js │ │ │ │ ├── browser │ │ │ │ │ └── dom.js │ │ │ │ ├── circular.js │ │ │ │ ├── deep.js │ │ │ │ ├── element.js │ │ │ │ ├── err.js │ │ │ │ ├── fakes.js │ │ │ │ ├── fn.js │ │ │ │ ├── global.js │ │ │ │ ├── has.js │ │ │ │ ├── holes.js │ │ │ │ ├── indent-option.js │ │ │ │ ├── inspect.js │ │ │ │ ├── lowbyte.js │ │ │ │ ├── number.js │ │ │ │ ├── quoteStyle.js │ │ │ │ ├── toStringTag.js │ │ │ │ ├── undef.js │ │ │ │ └── values.js │ │ │ └── util.inspect.js │ │ ├── on-finished │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── parseurl │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── path-to-regexp │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── picomatch │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── constants.js │ │ │ │ ├── parse.js │ │ │ │ ├── picomatch.js │ │ │ │ ├── scan.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── proxy-addr │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── pstree.remy │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ ├── tree.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ │ ├── fixtures │ │ │ │ ├── index.js │ │ │ │ ├── out1 │ │ │ │ └── out2 │ │ │ │ └── index.test.js │ │ ├── punycode │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── punycode.es6.js │ │ │ └── punycode.js │ │ ├── qs │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ └── qs.js │ │ │ ├── lib │ │ │ │ ├── formats.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── empty-keys-cases.js │ │ │ │ ├── parse.js │ │ │ │ ├── stringify.js │ │ │ │ └── utils.js │ │ ├── range-parser │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── raw-body │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── readdirp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safe-buffer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── safer-buffer │ │ │ ├── LICENSE │ │ │ ├── Porting-Buffer.md │ │ │ ├── Readme.md │ │ │ ├── dangerous.js │ │ │ ├── package.json │ │ │ ├── safer.js │ │ │ └── tests.js │ │ ├── semver │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ ├── classes │ │ │ │ ├── comparator.js │ │ │ │ ├── index.js │ │ │ │ ├── range.js │ │ │ │ └── semver.js │ │ │ ├── functions │ │ │ │ ├── clean.js │ │ │ │ ├── cmp.js │ │ │ │ ├── coerce.js │ │ │ │ ├── compare-build.js │ │ │ │ ├── compare-loose.js │ │ │ │ ├── compare.js │ │ │ │ ├── diff.js │ │ │ │ ├── eq.js │ │ │ │ ├── gt.js │ │ │ │ ├── gte.js │ │ │ │ ├── inc.js │ │ │ │ ├── lt.js │ │ │ │ ├── lte.js │ │ │ │ ├── major.js │ │ │ │ ├── minor.js │ │ │ │ ├── neq.js │ │ │ │ ├── parse.js │ │ │ │ ├── patch.js │ │ │ │ ├── prerelease.js │ │ │ │ ├── rcompare.js │ │ │ │ ├── rsort.js │ │ │ │ ├── satisfies.js │ │ │ │ ├── sort.js │ │ │ │ └── valid.js │ │ │ ├── index.js │ │ │ ├── internal │ │ │ │ ├── constants.js │ │ │ │ ├── debug.js │ │ │ │ ├── identifiers.js │ │ │ │ ├── lrucache.js │ │ │ │ ├── parse-options.js │ │ │ │ └── re.js │ │ │ ├── package.json │ │ │ ├── preload.js │ │ │ ├── range.bnf │ │ │ └── ranges │ │ │ │ ├── gtr.js │ │ │ │ ├── intersects.js │ │ │ │ ├── ltr.js │ │ │ │ ├── max-satisfying.js │ │ │ │ ├── min-satisfying.js │ │ │ │ ├── min-version.js │ │ │ │ ├── outside.js │ │ │ │ ├── simplify.js │ │ │ │ ├── subset.js │ │ │ │ ├── to-comparators.js │ │ │ │ └── valid.js │ │ ├── send │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── encodeurl │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── setprototypeof │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ └── index.js │ │ ├── side-channel-list │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── list.d.ts │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-map │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel-weakmap │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── side-channel │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .nycrc │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ └── index.js │ │ │ └── tsconfig.json │ │ ├── sift │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── es │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── es5m │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── core.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── operations.d.ts │ │ │ │ └── utils.d.ts │ │ │ ├── package.json │ │ │ ├── sift.csp.min.js │ │ │ ├── sift.csp.min.js.map │ │ │ ├── sift.min.js │ │ │ ├── sift.min.js.map │ │ │ └── src │ │ │ │ ├── core.ts │ │ │ │ ├── index.ts │ │ │ │ ├── operations.ts │ │ │ │ └── utils.ts │ │ ├── simple-update-notifier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── borderedText.ts │ │ │ │ ├── cache.spec.ts │ │ │ │ ├── cache.ts │ │ │ │ ├── getDistVersion.spec.ts │ │ │ │ ├── getDistVersion.ts │ │ │ │ ├── hasNewVersion.spec.ts │ │ │ │ ├── hasNewVersion.ts │ │ │ │ ├── index.spec.ts │ │ │ │ ├── index.ts │ │ │ │ ├── isNpmOrYarn.ts │ │ │ │ └── types.ts │ │ ├── sparse-bitfield │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── statuses │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codes.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── supports-color │ │ │ ├── browser.js │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── to-regex-range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── toidentifier │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── touch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── nodetouch.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── tr46 │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── mappingTable.json │ │ │ │ ├── regexes.js │ │ │ │ └── statusMapping.js │ │ │ └── package.json │ │ ├── type-is │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── undefsafe │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── release.yml │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example.js │ │ │ ├── lib │ │ │ │ └── undefsafe.js │ │ │ └── package.json │ │ ├── unpipe │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── utils-merge │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── vary │ │ │ ├── HISTORY.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── webidl-conversions │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ └── whatwg-url │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── Function.js │ │ │ ├── URL-impl.js │ │ │ ├── URL.js │ │ │ ├── URLSearchParams-impl.js │ │ │ ├── URLSearchParams.js │ │ │ ├── VoidFunction.js │ │ │ ├── encoding.js │ │ │ ├── infra.js │ │ │ ├── percent-encoding.js │ │ │ ├── url-state-machine.js │ │ │ ├── urlencoded.js │ │ │ └── utils.js │ │ │ ├── package.json │ │ │ └── webidl2js-wrapper.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── models │ │ ├── Produto.js │ │ └── Usuario.js │ │ ├── routes │ │ ├── auth.js │ │ └── produtos.js │ │ └── server.js │ └── frontend │ ├── cadastro.html │ ├── consulta.html │ ├── index.html │ ├── login.html │ ├── script.js │ ├── singup.html │ └── style.css ├── README.md └── Scripts ├── Aula01 ├── PrimeiroSite.html ├── index.html ├── site01.html └── style.css ├── Aula02 ├── Aula Tarde │ ├── aula.html │ └── estilo.css ├── Aula2.html ├── AulaManha.html ├── Estilo e Estrutura │ ├── index.html │ └── style.css ├── estilo.css ├── index.html ├── index_Aula.html ├── style.css └── style_Aula.css ├── Aula03 ├── FlexBox │ ├── index.css │ └── index.html ├── ScriptsAoVivo │ ├── index.html │ ├── paginaPessoal │ │ ├── index.html │ │ └── style.css │ ├── style.css │ └── style01.css ├── index.html ├── index2.html └── style.css ├── Aula04 ├── Portifolio │ ├── contato.html │ ├── css │ │ ├── contato.css │ │ ├── projetos.css │ │ └── style.css │ ├── img │ │ ├── css-3.png │ │ ├── html-5.png │ │ └── javascript.png │ ├── index.html │ ├── projetos.html │ └── scripts │ │ └── script.js ├── ScriptsAovivo │ ├── index.html │ └── style.css └── index.html ├── Aula05 ├── ScriptsAovivo │ ├── funcoes.js │ ├── index.html │ └── script.js └── cyberpunk-site │ ├── index.html │ ├── script.js │ └── style.css ├── Aula06 ├── ScriptsAovivo │ ├── exemplo2.html │ ├── index.html │ └── script.js └── Site_Game_RPG │ ├── index.html │ ├── script.js │ └── style.css ├── Aula07 ├── Scripts_AoVivo │ ├── index.html │ └── logo_jQuery.jpg ├── Site_Gestão_Estoque │ ├── index.html │ ├── script.js │ └── style.css └── Site_jQuery_RPG │ ├── index.html │ ├── script.js │ └── style.css ├── Aula08 ├── ScripstAoVivo │ └── index.html ├── Site_Padaria │ ├── index.html │ ├── script.js │ └── style.css └── Site_lutas │ ├── index.html │ ├── script.js │ └── style.css └── DB_Loja_Online.sql /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_01_HTML_CSS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_01_HTML_CSS.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_02­_HTML_Avançado_CSS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_02­_HTML_Avançado_CSS.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_03_Layouts_e_Grids_com_CSS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_03_Layouts_e_Grids_com_CSS.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_04_Formulários_em_HTML_e_CSS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_04_Formulários_em_HTML_e_CSS.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_05­­_Introdução_ao_JavaScript.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_05­­_Introdução_ao_JavaScript.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_06­_Manipulação_de_DOM_com_JavaScript.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_06­_Manipulação_de_DOM_com_JavaScript.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_07­_jQuery_A_Biblioteca_JavaScript.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_07­_jQuery_A_Biblioteca_JavaScript.pptx -------------------------------------------------------------------------------- /Aulas(Powerpoint)/Aula_08­_Responsividade_e_Mobile_First.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Aulas(Powerpoint)/Aula_08­_Responsividade_e_Mobile_First.pptx -------------------------------------------------------------------------------- /Desafios/Desadio02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Desafios/Desadio02.md -------------------------------------------------------------------------------- /Desafios/Desafio01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Desafios/Desafio01.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/LICENSE -------------------------------------------------------------------------------- /Projeto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/.env: -------------------------------------------------------------------------------- 1 | MONGO_URI=mongodb://localhost:27017/supermercado -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/mime -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodemon -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodemon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodemon.cmd -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodemon.ps1 -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodetouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodetouch -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodetouch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodetouch.cmd -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/nodetouch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/nodetouch.ps1 -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/semver -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/semver.cmd -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.bin/semver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.bin/semver.ps1 -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/.package-lock.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/@mongodb-js/saslprep/dist/generate-code-points.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=generate-code-points.d.ts.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/accepts/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/accepts/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/accepts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/accepts/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/anymatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/anymatch/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/anymatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/anymatch/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/anymatch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/anymatch/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/anymatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/anymatch/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/anymatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/anymatch/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/array-flatten/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/array-flatten/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/array-flatten/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/array-flatten/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/balanced-match/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/balanced-match/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/body-parser/lib/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/body-parser/lib/read.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/brace-expansion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/brace-expansion/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/compile.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/constants.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/expand.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/parse.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/stringify.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/braces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/braces/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/LICENSE.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/bson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/bson.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/etc/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/etc/prepare.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.bundle.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.cjs -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.cjs.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.mjs -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.mjs.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/lib/bson.rn.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/lib/bson.rn.cjs -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/binary.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/bson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/bson.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/bson_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/bson_value.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/code.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/constants.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/db_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/db_ref.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/decimal128.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/decimal128.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/double.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/double.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/error.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/index.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/int_32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/int_32.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/long.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/long.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/max_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/max_key.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/min_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/min_key.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/objectid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/objectid.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/parse_utf8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/parse_utf8.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/regexp.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/symbol.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/timestamp.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bson/src/utils/latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bson/src/utils/latin.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bytes/History.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/bytes/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bind-apply-helpers/actualApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Reflect.apply; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bind-apply-helpers/functionApply.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.apply; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bind-apply-helpers/functionCall.d.ts: -------------------------------------------------------------------------------- 1 | export = Function.prototype.call; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/call-bound/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/call-bound/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/chokidar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/chokidar/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/chokidar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/chokidar/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/chokidar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/chokidar/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/chokidar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/chokidar/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/concat-map/.travis.yml -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/concat-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/concat-map/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/concat-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/concat-map/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/concat-map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/concat-map/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/concat-map/test/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/concat-map/test/map.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/content-type/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/content-type/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/content-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/content-type/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/content-type/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/content-type/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/content-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/content-type/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cookie/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cookie/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cookie/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/CONTRIBUTING.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/cors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/cors/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/component.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/karma.conf.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/src/browser.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/depd/History.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/depd/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/depd/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/destroy/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/destroy/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/destroy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/destroy/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/README-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/README-es.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/config.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/config.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/lib/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/lib/main.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/lib/main.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dotenv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dotenv/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/get.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/get.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/get.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/set.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/set.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/dunder-proto/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/dunder-proto/set.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ee-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ee-first/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/encodeurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/encodeurl/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/encodeurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/encodeurl/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/eval.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/eval.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/eval.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/range.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/range.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/range.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/ref.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/syntax.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/syntax.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/syntax.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/test/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/tsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/type.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/type.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/uri.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-errors/uri.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-object-atoms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/es-object-atoms/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/es-object-atoms/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Object; 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/escape-html/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/escape-html/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/escape-html/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/escape-html/Readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/escape-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/escape-html/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/etag/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/etag/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/etag/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/History.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/Readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/lib/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/lib/express.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/lib/request.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/lib/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/lib/response.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/lib/view.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/express/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fill-range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fill-range/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fill-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fill-range/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fill-range/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fill-range/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fill-range/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fill-range/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/finalhandler/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/finalhandler/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/finalhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/finalhandler/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/finalhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/finalhandler/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/finalhandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/finalhandler/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/forwarded/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/forwarded/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/forwarded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/forwarded/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/forwarded/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/forwarded/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/fresh/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/function-bind/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/function-bind/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/function-bind/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/function-bind/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/function-bind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/function-bind/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/function-bind/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/function-bind/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/function-bind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/function-bind/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-intrinsic/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-intrinsic/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-intrinsic/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-intrinsic/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-intrinsic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-intrinsic/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-intrinsic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-intrinsic/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-intrinsic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-intrinsic/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/Reflect.getPrototypeOf.d.ts: -------------------------------------------------------------------------------- 1 | declare const x: typeof Reflect.getPrototypeOf | null; 2 | 3 | export = x; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/test/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/get-proto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/get-proto/tsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/glob-parent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/glob-parent/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/glob-parent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/glob-parent/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/glob-parent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/glob-parent/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/gOPD.d.ts: -------------------------------------------------------------------------------- 1 | export = Object.getOwnPropertyDescriptor; 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/gOPD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/gOPD.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/test/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/gopd/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/gopd/tsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-flag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-flag/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-flag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-flag/license -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-flag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-flag/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-flag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-flag/readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/shams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/shams.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/has-symbols/shams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/has-symbols/shams.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/hasown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/hasown/tsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/http-errors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/http-errors/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/http-errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/http-errors/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/http-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/http-errors/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/http-errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/http-errors/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/iconv-lite/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/iconv-lite/Changelog.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/iconv-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/iconv-lite/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/iconv-lite/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/iconv-lite/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/iconv-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/iconv-lite/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/inherits/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/inherits/inherits.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/inherits/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ipaddr.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ipaddr.js/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ipaddr.js/ipaddr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ipaddr.js/ipaddr.min.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ipaddr.js/lib/ipaddr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ipaddr.js/lib/ipaddr.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ipaddr.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ipaddr.js/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-binary-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-binary-path/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-binary-path/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-binary-path/license -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-extglob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-extglob/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-extglob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-extglob/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-extglob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-extglob/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-extglob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-extglob/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-glob/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-glob/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-glob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-glob/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-glob/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-number/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-number/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-number/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-number/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/is-number/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/is-number/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/kareem/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/kareem/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/abs.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.abs; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/abs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/abs.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/floor.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.floor; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/isNaN.d.ts: -------------------------------------------------------------------------------- 1 | export = Number.isNaN; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/max.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.max; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/max.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/min.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.min; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/min.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/mod.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/pow.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.pow; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/pow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/pow.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/round.d.ts: -------------------------------------------------------------------------------- 1 | export = Math.round; -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/math-intrinsics/sign.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/math-intrinsics/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@ljharb/tsconfig", 3 | } 4 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/media-typer/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/media-typer/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/media-typer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/media-typer/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/media-typer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/media-typer/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/media-typer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/media-typer/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/memory-pager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/memory-pager/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/memory-pager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/memory-pager/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/memory-pager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/memory-pager/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/memory-pager/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/memory-pager/test.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/methods/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/methods/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/methods/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/methods/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/methods/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/methods/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-db/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-types/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-types/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-types/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-types/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-types/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-types/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime-types/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/src/build.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/src/test.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mime/types.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/minimatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/minimatch/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/minimatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/minimatch/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/minimatch/minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/minimatch/minimatch.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/minimatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/minimatch/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/LICENSE.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/etc/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/etc/prepare.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/admin.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/beta.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/bson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/bson.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/bson.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/bson.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/db.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/db.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/db.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/deps.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/deps.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/deps.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/error.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/sort.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/mongodb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/mongodb.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/admin.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/beta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/beta.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/bson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/bson.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/db.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/deps.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/error.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/index.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/sort.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/src/utils.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongodb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongodb/tsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/LICENSE.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/browser.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/lib/cast.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/drivers/browser/decimal128.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * ignore 3 | */ 4 | 5 | 'use strict'; 6 | 7 | module.exports = require('bson').Decimal128; 8 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/helpers/populate/leanPopulateMap.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * ignore 5 | */ 6 | 7 | module.exports = new WeakMap(); 8 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/lib/model.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/lib/query.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mongoose/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/.travis.yml -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/History.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | rules: 4 | no-unused-vars: off -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mpath/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mpath/test/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/History.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/lib/env.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/lib/mquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/lib/mquery.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/mquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/mquery/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ms/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ms/license.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ms/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/negotiator/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/negotiator/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/negotiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/negotiator/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/negotiator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/negotiator/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/jsconfig.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/lib/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/lib/spawn.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/nodemon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/nodemon/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/object-assign/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/object-assign/license -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/object-inspect/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/object-inspect/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/on-finished/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/on-finished/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/on-finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/on-finished/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/on-finished/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/on-finished/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/parseurl/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/parseurl/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/parseurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/parseurl/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/parseurl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/parseurl/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/parseurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/parseurl/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/parseurl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/parseurl/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/picomatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/picomatch/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/picomatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/picomatch/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/picomatch/lib/scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/picomatch/lib/scan.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/proxy-addr/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/proxy-addr/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/proxy-addr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/proxy-addr/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/proxy-addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/proxy-addr/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/proxy-addr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/proxy-addr/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/pstree.remy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/pstree.remy/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/pstree.remy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/pstree.remy/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/punycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/punycode/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/punycode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/punycode/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/punycode/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/punycode/punycode.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/.editorconfig -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/lib/formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/lib/formats.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/lib/stringify.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/test/parse.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/test/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/test/stringify.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/qs/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/qs/test/utils.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/range-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/range-parser/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/range-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/range-parser/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/raw-body/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/raw-body/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/readdirp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/readdirp/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/readdirp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/readdirp/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/readdirp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/readdirp/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/readdirp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/readdirp/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/readdirp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/readdirp/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safe-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safe-buffer/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safe-buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safe-buffer/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safe-buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safe-buffer/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safer-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safer-buffer/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safer-buffer/safer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safer-buffer/safer.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/safer-buffer/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/safer-buffer/tests.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/bin/semver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/bin/semver.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/internal/re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/internal/re.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/preload.js: -------------------------------------------------------------------------------- 1 | // XXX remove in v8 or beyond 2 | module.exports = require('./index.js') 3 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/range.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/range.bnf -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/ranges/gtr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/ranges/gtr.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/semver/ranges/ltr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/semver/ranges/ltr.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/SECURITY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/send/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/send/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/serve-static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/serve-static/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/serve-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/serve-static/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/side-channel/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/side-channel/.nycrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/side-channel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/side-channel/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/side-channel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/side-channel/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/es/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/es/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/es/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/es/index.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/es5m/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/es5m/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/lib/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/lib/core.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/lib/index.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/lib/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/lib/index.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/lib/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/lib/utils.d.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/sift.csp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/sift.csp.min.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/sift.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/sift.min.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/sift.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/sift.min.js.map -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/src/core.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/src/index.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sift/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/sift/src/utils.ts -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/codes.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/statuses/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/statuses/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/toidentifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/toidentifier/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/toidentifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/toidentifier/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/touch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/touch/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/touch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/touch/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/touch/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/touch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/touch/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/tr46/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/tr46/LICENSE.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/tr46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/tr46/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/tr46/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/tr46/lib/regexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/tr46/lib/regexes.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/tr46/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/tr46/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/type-is/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/type-is/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/type-is/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/type-is/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/type-is/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/type-is/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/type-is/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/type-is/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/.jscsrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/.jshintrc -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/.travis.yml -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/undefsafe/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/undefsafe/example.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/unpipe/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/unpipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/unpipe/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/unpipe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/unpipe/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/utils-merge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/utils-merge/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/utils-merge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/utils-merge/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/utils-merge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/utils-merge/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/vary/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/vary/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/vary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/vary/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/whatwg-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/whatwg-url/README.md -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/whatwg-url/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/whatwg-url/index.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/node_modules/whatwg-url/lib/URL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/node_modules/whatwg-url/lib/URL.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/package-lock.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/package.json -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/src/models/Produto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/src/models/Produto.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/src/models/Usuario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/src/models/Usuario.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/src/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/src/routes/auth.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/src/routes/produtos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/src/routes/produtos.js -------------------------------------------------------------------------------- /Projeto/super_mercado/backend/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/backend/src/server.js -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/cadastro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/cadastro.html -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/consulta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/consulta.html -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/index.html -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/login.html -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/script.js -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/singup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/singup.html -------------------------------------------------------------------------------- /Projeto/super_mercado/frontend/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Projeto/super_mercado/frontend/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Aula01/PrimeiroSite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula01/PrimeiroSite.html -------------------------------------------------------------------------------- /Scripts/Aula01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula01/index.html -------------------------------------------------------------------------------- /Scripts/Aula01/site01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula01/site01.html -------------------------------------------------------------------------------- /Scripts/Aula01/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula01/style.css -------------------------------------------------------------------------------- /Scripts/Aula02/Aula Tarde/aula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/Aula Tarde/aula.html -------------------------------------------------------------------------------- /Scripts/Aula02/Aula Tarde/estilo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/Aula Tarde/estilo.css -------------------------------------------------------------------------------- /Scripts/Aula02/Aula2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/Aula2.html -------------------------------------------------------------------------------- /Scripts/Aula02/AulaManha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/AulaManha.html -------------------------------------------------------------------------------- /Scripts/Aula02/Estilo e Estrutura/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/Estilo e Estrutura/index.html -------------------------------------------------------------------------------- /Scripts/Aula02/Estilo e Estrutura/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/Estilo e Estrutura/style.css -------------------------------------------------------------------------------- /Scripts/Aula02/estilo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/estilo.css -------------------------------------------------------------------------------- /Scripts/Aula02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/index.html -------------------------------------------------------------------------------- /Scripts/Aula02/index_Aula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/index_Aula.html -------------------------------------------------------------------------------- /Scripts/Aula02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/style.css -------------------------------------------------------------------------------- /Scripts/Aula02/style_Aula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula02/style_Aula.css -------------------------------------------------------------------------------- /Scripts/Aula03/FlexBox/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/FlexBox/index.css -------------------------------------------------------------------------------- /Scripts/Aula03/FlexBox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/FlexBox/index.html -------------------------------------------------------------------------------- /Scripts/Aula03/ScriptsAoVivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/ScriptsAoVivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula03/ScriptsAoVivo/paginaPessoal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/ScriptsAoVivo/paginaPessoal/index.html -------------------------------------------------------------------------------- /Scripts/Aula03/ScriptsAoVivo/paginaPessoal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/ScriptsAoVivo/paginaPessoal/style.css -------------------------------------------------------------------------------- /Scripts/Aula03/ScriptsAoVivo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/ScriptsAoVivo/style.css -------------------------------------------------------------------------------- /Scripts/Aula03/ScriptsAoVivo/style01.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/ScriptsAoVivo/style01.css -------------------------------------------------------------------------------- /Scripts/Aula03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/index.html -------------------------------------------------------------------------------- /Scripts/Aula03/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/index2.html -------------------------------------------------------------------------------- /Scripts/Aula03/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula03/style.css -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/contato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/contato.html -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/css/contato.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/css/contato.css -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/css/projetos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/css/projetos.css -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/css/style.css -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/img/css-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/img/css-3.png -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/img/html-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/img/html-5.png -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/img/javascript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/img/javascript.png -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/index.html -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/projetos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/projetos.html -------------------------------------------------------------------------------- /Scripts/Aula04/Portifolio/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/Portifolio/scripts/script.js -------------------------------------------------------------------------------- /Scripts/Aula04/ScriptsAovivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/ScriptsAovivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula04/ScriptsAovivo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/ScriptsAovivo/style.css -------------------------------------------------------------------------------- /Scripts/Aula04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula04/index.html -------------------------------------------------------------------------------- /Scripts/Aula05/ScriptsAovivo/funcoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/ScriptsAovivo/funcoes.js -------------------------------------------------------------------------------- /Scripts/Aula05/ScriptsAovivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/ScriptsAovivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula05/ScriptsAovivo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/ScriptsAovivo/script.js -------------------------------------------------------------------------------- /Scripts/Aula05/cyberpunk-site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/cyberpunk-site/index.html -------------------------------------------------------------------------------- /Scripts/Aula05/cyberpunk-site/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/cyberpunk-site/script.js -------------------------------------------------------------------------------- /Scripts/Aula05/cyberpunk-site/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula05/cyberpunk-site/style.css -------------------------------------------------------------------------------- /Scripts/Aula06/ScriptsAovivo/exemplo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/ScriptsAovivo/exemplo2.html -------------------------------------------------------------------------------- /Scripts/Aula06/ScriptsAovivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/ScriptsAovivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula06/ScriptsAovivo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/ScriptsAovivo/script.js -------------------------------------------------------------------------------- /Scripts/Aula06/Site_Game_RPG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/Site_Game_RPG/index.html -------------------------------------------------------------------------------- /Scripts/Aula06/Site_Game_RPG/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/Site_Game_RPG/script.js -------------------------------------------------------------------------------- /Scripts/Aula06/Site_Game_RPG/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula06/Site_Game_RPG/style.css -------------------------------------------------------------------------------- /Scripts/Aula07/Scripts_AoVivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Scripts_AoVivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula07/Scripts_AoVivo/logo_jQuery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Scripts_AoVivo/logo_jQuery.jpg -------------------------------------------------------------------------------- /Scripts/Aula07/Site_Gestão_Estoque/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_Gestão_Estoque/index.html -------------------------------------------------------------------------------- /Scripts/Aula07/Site_Gestão_Estoque/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_Gestão_Estoque/script.js -------------------------------------------------------------------------------- /Scripts/Aula07/Site_Gestão_Estoque/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_Gestão_Estoque/style.css -------------------------------------------------------------------------------- /Scripts/Aula07/Site_jQuery_RPG/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_jQuery_RPG/index.html -------------------------------------------------------------------------------- /Scripts/Aula07/Site_jQuery_RPG/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_jQuery_RPG/script.js -------------------------------------------------------------------------------- /Scripts/Aula07/Site_jQuery_RPG/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula07/Site_jQuery_RPG/style.css -------------------------------------------------------------------------------- /Scripts/Aula08/ScripstAoVivo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/ScripstAoVivo/index.html -------------------------------------------------------------------------------- /Scripts/Aula08/Site_Padaria/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_Padaria/index.html -------------------------------------------------------------------------------- /Scripts/Aula08/Site_Padaria/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_Padaria/script.js -------------------------------------------------------------------------------- /Scripts/Aula08/Site_Padaria/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_Padaria/style.css -------------------------------------------------------------------------------- /Scripts/Aula08/Site_lutas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_lutas/index.html -------------------------------------------------------------------------------- /Scripts/Aula08/Site_lutas/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_lutas/script.js -------------------------------------------------------------------------------- /Scripts/Aula08/Site_lutas/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/Aula08/Site_lutas/style.css -------------------------------------------------------------------------------- /Scripts/DB_Loja_Online.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapelariPedro/Curso_HTML_CSS_JavaScript/HEAD/Scripts/DB_Loja_Online.sql --------------------------------------------------------------------------------