-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "graphql-brazil-chamber-of-deputies-api",
"version": "1.0.0",
"description": "Proxy GraphQL for Brazil's Chamber of Deputies REST API",
"private": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"_start": "nodemon --config .nodemon.config.json",
"start:dist": "node dist/index.js",
"cli": "ts-node src/cmd/cli/index.ts",
"test": "jest --detectOpenHandles --logHeapUsage",
"test:coverage": "npm run test -- --coverage",
"test:ci": "npm run test -- --colors --coverage --ci",
"test:coverage:upload": "codecov -f coverage/*.json",
"_build": "tsc --project tsconfig.build.json && npm run build:copyschemas",
"build:copyschemas": "node scripts/copySchemas.js",
"build:clean": "rm -rf ./dist tsconfig.build.tsbuildinfo",
"postinstall": "husky install",
"prepare": "husky install",
"lint": "eslint --ext .ts,.js .",
"prettier": "prettier 'src/**' 'scripts/**' --write --ignore-unknown",
"prettier:ci": "prettier --check 'src/**' 'scripts/**' --ignore-unknown",
"deps-utils": "node scripts/deps-utils/index.js"
},
"engines": {
"node": ">=14.17"
},
"author": {
"name": "Vitor Hugo Salgado",
"email": "[email protected]",
"url": "https://github.com/vitorsalgado"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vitorsalgado/camara-deputados-graphql.git"
},
"bugs": {
"url": "https://github.com/vitorsalgado/camara-deputados-graphql/issues"
},
"readme": "https://github.com/vitorsalgado/camara-deputados-graphql#readme",
"homepage": "https://graphql-chamber-deputies-br.herokuapp.com/graphiql",
"keywords": [
"graphql",
"graphql-api",
"api",
"typescript"
],
"dependencies": {
"@drizzle-http/core": "^3.1.0",
"@drizzle-http/logging-interceptor": "^3.1.0",
"@drizzle-http/opossum-circuit-breaker": "^3.1.0",
"@drizzle-http/response-mapper-adapter": "^3.1.0",
"@drizzle-http/undici": "^3.1.0",
"@nestjs/common": "^8.2.4",
"@nestjs/core": "^8.2.4",
"@nestjs/graphql": "^9.1.2",
"@nestjs/platform-fastify": "^8.2.4",
"apollo-server-fastify": "^3.6.1",
"dotenv": "^10.0.0",
"fastify": "^3.29.4",
"fastify-cors": "^6.0.2",
"fastify-helmet": "^5.3.2",
"graphql": "^15",
"ioredis": "^4.28.2",
"joi": "^17.5.0",
"mercurius": "^9.1.0",
"newrelic": "^8.7.0",
"pino": "^7.6.2",
"pino-pretty": "^7.3.0",
"prom-client": "^14.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.1",
"source-map-support": "^0.5.21",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@nestjs/cli": "^8.1.6",
"@nestjs/testing": "^8.2.4",
"@types/ioredis": "^4.28.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/pino": "^7.0.5",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"codecov": "^3.8.3",
"commander": "^8.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fs-extra": "^10.0.0",
"globby": "12.0.2",
"husky": "^7.0.4",
"jest": "^27.4.6",
"lint-staged": "^12.1.5",
"nock": "^13.2.1",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"packageManager": "[email protected]"
}