Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,312 changes: 2,312 additions & 0 deletions modulo5/apis-rest/package-lock.json

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions modulo5/apis-rest/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"name": "apis-rest",
"version": "1.0.0",
"description": "",
"main": "\u001b[D\u001b[D\u001b[t",
"dependencies": {
"@types/node": "^18.11.9",
"acorn": "^8.8.1",
"acorn-walk": "^8.2.0",
"anymatch": "^3.1.2",
"arg": "^4.1.3",
"balanced-match": "^1.0.2",
"binary-extensions": "^2.2.0",
"brace-expansion": "^1.1.11",
"braces": "^3.0.2",
"buffer-from": "^1.1.2",
"chokidar": "^3.5.3",
"concat-map": "^0.0.1",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"dynamic-dedupe": "^0.3.0",
"express": "^4.18.2",
"fill-range": "^7.0.1",
"fs.realpath": "^1.0.0",
"function-bind": "^1.1.1",
"glob": "^7.2.3",
"glob-parent": "^5.1.2",
"has": "^1.0.3",
"inflight": "^1.0.6",
"inherits": "^2.0.4",
"is-binary-path": "^2.1.0",
"is-core-module": "^2.11.0",
"is-extglob": "^2.1.1",
"is-glob": "^4.0.3",
"is-number": "^7.0.0",
"make-error": "^1.3.6",
"minimatch": "^3.1.2",
"minimist": "^1.2.7",
"mkdirp": "^1.0.4",
"normalize-path": "^3.0.0",
"once": "^1.4.0",
"path-is-absolute": "^1.0.1",
"path-parse": "^1.0.7",
"picomatch": "^2.3.1",
"readdirp": "^3.6.0",
"resolve": "^1.22.1",
"rimraf": "^2.7.1",
"source-map": "^0.6.1",
"source-map-support": "^0.5.21",
"strip-bom": "^3.0.0",
"strip-json-comments": "^2.0.1",
"supports-preserve-symlinks-flag": "^1.0.0",
"to-regex-range": "^5.0.1",
"tree-kill": "^1.2.2",
"ts-node": "^10.9.1",
"tsconfig": "^7.0.0",
"typescript": "^4.8.4",
"v8-compile-cache-lib": "^3.0.1",
"wrappy": "^1.0.2",
"xtend": "^4.0.2",
"yn": "^3.1.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "matheus",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"cors": "^2.8.5",
"ts-node-dev": "^2.0.0"
}
}
11 changes: 11 additions & 0 deletions modulo5/apis-rest/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
"outDir": "./build" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"strict": true /* Enable all strict type-checking options. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
}
}
39 changes: 39 additions & 0 deletions modulo5/aprofundamento-sql/exercicio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
### Exercício 1
a)
b)
c)
d)

```
### Exercício 2
a)
b)
c)
d)

```
### Exercício 3
a)
b)

```
### Exercício 4
a)
b)
c)
d)

```
### Exercício 5
a)
b)
c)
d)
e)

```
### Exercício 6
a)
b)
c)
d)
35 changes: 35 additions & 0 deletions modulo5/aprofundamento-typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions modulo5/aprofundamento-typescript/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "aprofundamento-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "^4.8.4"
}
}
42 changes: 42 additions & 0 deletions modulo5/intro-express/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions modulo5/intro-express/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"dependencies": {
"@types/node": "^18.11.7",
"typescript": "^4.8.4"
},
"scripts": {
"start": "node ./build/index.js",
"build": "tsc"
}
}
15 changes: 15 additions & 0 deletions modulo5/intro-express/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "es6", /* Specify ECMAScript target version */
"module": "commonjs", /* Specify module code generation */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "./build", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. */
"removeComments": true, /* Do not emit comments to output. */
"strict": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true /* Raise error on declarations with an implied 'any' type. */
}
}
Empty file.