-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "api_com_nodejs",
"version": "1.0.0",
"description": "Trilha NodeJS - Criando a API com NodeJS",
"main": "index.js",
"repository": "https://github.com/claudneysessa/ignite-trilha-nodejs-Chapter02-criando-api-com-nodejs.git",
"author": "claudneysessa <claudneysartisessa@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"doc": "node dist/swagger.js"
},
"dependencies": {
"@types/csv-parse": "^1.2.2",
"@types/multer": "^1.4.7",
"@types/swagger-schema-official": "^2.0.22",
"@types/uuid": "^8.3.4",
"csv-parse": "^5.3.1",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"swagger-autogen": "^2.22.0",
"swagger-jsdoc": "^6.2.5",
"swagger-schema-official": "^2.0.0-bab6bed",
"swagger-ui-express": "^4.5.0",
"swagger2openapi": "^7.0.8",
"tsc": "^2.0.4",
"uuid": "^9.0.0"
},
"bin": {
"swagger-typescript-api": "src/server.js",
"sta": "src/index.js"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}