-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.57 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
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
{
"name": "@cardano-graphql/api-cardano-db-hasura",
"version": "9.0.2",
"description": "Module for interfacing with the Cardano DB, populated by cardano-db-sync that utilises Hasura for a powerful query interface",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "yarn codegen && tsc -b ./src",
"codegen": "graphql-codegen",
"cleanup": "shx rm -rf dist node_modules src/graphql_types.ts",
"lint": "eslint --ignore-path ../../.eslintignore \"**/*.ts\"",
"prepack": "yarn build",
"predb-manager": "yarn build",
"background": "node dist/background.js",
"test": "yarn build && NODE_ENV=test jest -c ./test/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cardano-foundation/cardano-graphql.git"
},
"author": "Rhys Bartels-Waller",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cardano-foundation/cardano-graphql/issues"
},
"homepage": "https://github.com/cardano-foundation/cardano-graphql/blob/master/packages/api-cardano-db-hasura/README.md",
"files": [
"dist/*",
"!dist/__test__",
"!dist/**/*.test.*",
"hasura",
"LICENSE",
"NOTICE",
"schema.graphql"
],
"dependencies": {
"@cardano-graphql/util": "9.0.2",
"@cardanosolutions/json-bigint": "^1.0.0",
"@emurgo/cip14-js": "^2.0.0",
"@graphql-tools/delegate": "^6.2.4",
"@graphql-tools/schema": "^6.2.4",
"@graphql-tools/wrap": "^6.2.4",
"apollo-boost": "^0.4.9",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-link-retry": "^2.2.16",
"apollo-server": "^2.25.3",
"axios": "^1.15.0",
"bignumber.js": "^9.0.1",
"cross-fetch": "^3.1.5",
"dayjs": "^1.8.29",
"fs-extra": "^9.1.0",
"graphql": "14.5.8",
"graphql-bigint": "^1.0.0",
"graphql-query-complexity": "^0.8.1",
"graphql-request": "^3.4.0",
"graphql-scalars": "^1.2.1",
"object-hash": "^2.2.0",
"p-retry": "^4.2.0",
"pg": "^8.5.1",
"pg-boss": "^6.0.1",
"pg-listen": "^1.6.0",
"set-interval-async": "^2.0.3",
"ts-custom-error": "^3.2.0",
"ts-log": "^2.2.3"
},
"devDependencies": {
"@cardano-graphql/util-dev": "9.0.2",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-resolvers": "^1.20.0",
"@types/node": "^14.0.13",
"@types/object-hash": "^1.3.4",
"@types/pg": "^7.14.4",
"@types/temp-write": "^4.0.0",
"shx": "^0.3.2",
"typescript": "^4.2.3"
}
}