forked from cardano-foundation/cardano-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 5.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
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
{
"name": "cardano-graphql",
"description": "A TypeScript monorepo. Includes a server package and API modules for flexible implementation",
"engines": {
"node": "^14"
},
"version": "6.2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"cleanup": "yarn workspaces run cleanup && shx rm -rf node_modules",
"cli:install": "yarn workspace @cardano-graphql/cli global:add",
"cli:uninstall": "yarn workspace @cardano-graphql/cli global:remove",
"dev:init": "./scripts/dev_init.sh",
"dev:cleanup": "shx rm -rf ./state ./bin",
"mainnet:stack": "CONTEXT=$PWD NETWORK=mainnet . ./scripts/export_env.sh && docker-compose -p mainnet up --build -d",
"mainnet:dev": "CONTEXT=$PWD NETWORK=mainnet . ./scripts/export_env.sh && yarn service-dependencies -p mainnet up --build",
"mainnet:up": "yarn mainnet:stack && docker-compose -p mainnet logs -f",
"mainnet:down": "docker-compose -p mainnet down --remove-orphans",
"mainnet:server": "CONTEXT=$PWD NETWORK=mainnet . ./scripts/export_env.sh && yarn workspace @cardano-graphql/server start",
"testnet:stack": "CONTEXT=$PWD NETWORK=testnet . ./scripts/export_env.sh && docker-compose -p testnet up --build -d",
"testnet:dev": "CONTEXT=$PWD NETWORK=testnet . ./scripts/export_env.sh && yarn service-dependencies -p testnet up --build",
"testnet:up": "yarn testnet:stack && docker-compose -p testnet logs -f",
"testnet:down": "docker-compose -p testnet down --remove-orphans",
"testnet:server": "CONTEXT=$PWD NETWORK=testnet . ./scripts/export_env.sh && yarn workspace @cardano-graphql/server start",
"alonzo-purple:stack": "CONTEXT=$PWD NETWORK=alonzo-purple . ./scripts/export_env.sh && docker-compose -p alonzo-purple up --build -d",
"alonzo-purple:dev": "CONTEXT=$PWD NETWORK=alonzo-purple . ./scripts/export_env.sh && yarn service-dependencies -p alonzo-purple up --build",
"alonzo-purple:up": "yarn alonzo-purple:stack && docker-compose -p alonzo-purple logs -f",
"alonzo-purple:down": "docker-compose -p alonzo-purple down --remove-orphans",
"alonzo-purple:server": "CONTEXT=$PWD NETWORK=alonzo-purple . ./scripts/export_env.sh && yarn workspace @cardano-graphql/server start",
"alonzo-qa:stack": "CONTEXT=$PWD NETWORK=alonzo-qa . ./scripts/export_env.sh && docker-compose -p alonzo-qa up --build -d",
"alonzo-qa:dev": "CONTEXT=$PWD NETWORK=alonzo-qa . ./scripts/export_env.sh && yarn service-dependencies -p alonzo-qa up --build",
"alonzo-qa:up": "yarn alonzo-qa:stack && docker-compose -p alonzo-qa logs -f",
"alonzo-qa:down": "docker-compose -p alonzo-qa down --remove-orphans",
"alonzo-qa:server": "CONTEXT=$PWD NETWORK=alonzo-qa . ./scripts/export_env.sh && yarn workspace @cardano-graphql/server start",
"lint": "yarn workspaces run lint",
"loadtest:byron-staging": "artillery run test/loadtest/byron-staging-config.yml",
"publish-packages": "yarn workspaces run publish",
"service-dependencies": "docker-compose config --services | grep -v \"cardano-graphql\" | xargs docker-compose",
"test": "yarn workspaces run test"
},
"contributors": [
"Rhys Bartels-Waller <rhys.bartelswaller@iohk.io> (https://iohk.io)",
"Sam Jeston <sam.jeston@gmail.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/input-output-hk/cardano-graphql/issues"
},
"homepage": "https://github.com/input-output-hk/cardano-graphql#README.md",
"devDependencies": {
"@graphql-codegen/cli": "^1.15.2",
"@graphql-codegen/typescript": "^1.15.2",
"@graphql-codegen/typescript-graphql-files-modules": "^1.15.2",
"@graphql-codegen/typescript-resolvers": "^1.15.2",
"@types/bunyan": "^1.8.6",
"@types/clear": "^0.1.0",
"@types/dockerode": "^2.5.33",
"@types/express": "^4.17.13",
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^9.0.1",
"@types/graphql-depth-limit": "^1.1.2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.3",
"@types/js-yaml": "^3.12.5",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.4",
"@types/set-interval-async": "^1.0.0",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"apollo-boost": "^0.4.9",
"apollo-link-http": "^1.5.17",
"apollo-server-core": "^2.15.0",
"apollo-server-testing": "^2.15.0",
"async": "^3.2.0",
"bignumber.js": "^9.0.0",
"cross-fetch": "^3.0.4",
"delay": "^4.4.0",
"env-paths": "^2.2.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-watch": "^7.0.0",
"graphql": "14.5.8",
"graphql-depth-limit": "^1.1.0",
"graphql-tag": "^2.10.3",
"jest": "^26.0.1",
"node-fetch": "^2.6.1",
"p-retry": "^4.2.0",
"pm2": "^4.5.6",
"shx": "^0.3.2",
"tmp-promise": "^3.0.2",
"ts-jest": "^26.1.1",
"ts-node-dev": "^1.0.0-pre.49",
"typescript": "^3.9.5"
},
"resolutions": {
"**/graphql": "14.5.8",
"@cardanosolutions/json-bigint": "1.0.0",
"@types/express": "4.17.13"
},
"dependencies": {}
}