-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "cep-koa-api",
"version": "8.1.1",
"repository": "lagden/cep-koa-api",
"description": "Encontre o endereço através do CEP",
"keywords": [
"cep",
"busca",
"api"
],
"main": "server/index.js",
"type": "module",
"files": [
"server",
"README.md"
],
"author": "Thiago Lagden",
"license": "MIT",
"scripts": {
"eslint": "eslint --config .eslintrc.yml --ext .js --ignore-path .gitignore .",
"prettier": "prettier -c --plugin-search-dir=. ./server/**/*.js",
"pretest": "npm run eslint",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov ava --serial",
"dev": "run-s test start",
"start": "node server"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "7.3.15",
"@graphql-tools/load": "7.5.14",
"@graphql-tools/schema": "8.3.14",
"@koa/router": "10.1.1",
"@tadashi/cep": "2.1.1",
"@tadashi/find-in-cache": "2.2.1",
"@tadashi/koa-base": "5.1.0",
"debug": "4.3.4",
"graphql": "16.5.0",
"ioredis": "5.0.6",
"koa": "2.13.4",
"koa-bodyparser": "4.3.0",
"koa-compose": "4.1.0",
"local-access": "1.1.0",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/eslint-parser": "7.18.2",
"@tadashi/hex-id": "2.0.0",
"ava": "4.3.0",
"c8": "7.11.3",
"eslint": "8.17.0",
"eslint-config-xo": "0.41.0",
"eslint-plugin-unicorn": "42.0.0",
"got": "12.1.0",
"hash-to-port": "1.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.6.2"
},
"babel": {}
}