-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
89 lines (89 loc) · 2.32 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
{
"private": true,
"name": "graphql-registry",
"version": "0.1.0",
"main": "build/index.js",
"description": "GraphQL registry",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "node -r dotenv/config build/index.js",
"build": "tsc",
"dev": "cross-env TS_NODE_TRANSPILE_ONLY=true nodemon --watch 'src/**/*.ts' --exec node --inspect -r ts-node/register -r dotenv/config src/index.ts",
"test": "ava",
"test:watch": "npm run test -- --watch",
"cov": "nyc --reporter=lcov --reporter=text-summary -- npm run test",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"release": "release-it --no-npm --github.release",
"prepare": "husky install && npm run build",
"migrate:make": "knex migrate:make --migrations-directory src/migrations -x ts",
"migrate:rollback": "knex migrate:rollback --knexfile build/knexfile.js",
"migrate:up": "knex migrate:up --knexfile build/knexfile.js",
"migrate:down": "knex migrate:rollback --all --knexfile build/knexfile.js"
},
"engines": {
"node": ">=14"
},
"files": [
"build"
],
"release-it": {
"git": {
"commitArgs": [
"--no-verify"
]
}
},
"ava": {
"files": [
"src/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": "tsc"
}
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@types/node": "^14.17.0",
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"execa": "^5.1.1",
"husky": "^7.0.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"release-it": "^14.11.5",
"rimraf": "^3.0.2",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"uid": "^2.0.0"
},
"dependencies": {
"@apollo/federation": "^0.29.0",
"@graphql-inspector/core": "2.6.1",
"ajv": "6.12.6",
"apollo-graphql": "^0.9.3",
"env-schema": "^3.3.0",
"fastify": "^3.20.2",
"fastify-basic-auth": "^2.1.0",
"fastify-error": "^0.3.1",
"fastify-jwt": "^3.0.1",
"fastify-plugin": "^3.0.0",
"fluent-json-schema": "^3.0.1",
"graphql": "^15.5.1",
"knex": "^0.21.21",
"pg": "^8.7.1",
"pino-pretty": "^5.1.3"
},
"keywords": [
"graphql",
"registry",
"schema",
"apollo",
"federation"
]
}