-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tdc-future-2022-nodejs-api-rest",
"version": "1.0.0",
"description": "Repositório utilizado no evento TDC Future 2022 com o tema \"API REST em Node.js: Boas práticas em produção.\"",
"homepage": "https://github.com/rodrigokamada/tdc-future-2022-nodejs-api-rest#readme",
"author": "Rodrigo Kamada <[email protected]> (https://github.com/rodrigokamada)",
"license": "MIT",
"keywords": [
"eslint",
"expressjs",
"openapi",
"mongodb",
"nodejs",
"swagger",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigokamada/tdc-future-2022-nodejs-api-rest.git"
},
"bugs": {
"url": "https://github.com/rodrigokamada/tdc-future-2022-nodejs-api-rest/issues"
},
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon --exec ts-node src/index.ts",
"build": "rimraf dist && tsc",
"lint": "eslint 'src/**/*'",
"lint:fix": "eslint --fix 'src/**/*'",
"swagger": "tsoa spec",
"test": "cross-env NODE_ENV=test jest"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/http-errors": "^1.8.2",
"@types/jest": "^29.2.0",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"cross-env": "^7.0.3",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.1",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"config": "^3.3.8",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"mongoose": "^6.6.7",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.3",
"uuid": "^9.0.0",
"winston": "^3.8.2"
}
}