-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
113 lines (113 loc) · 3.34 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
{
"name": "astrograph",
"version": "0.1.0",
"main": "src/graphql_server.ts",
"description": "GraphQL server for Stellar network",
"author": "Mobius Team",
"repository": {
"type": "git",
"url": "git+https://github.com/mobius-network/astrograph"
},
"homepage": "https://github.com/mobius-network/astrograph#readme",
"bugs": {
"url": "https://github.com/mobius-network/astrograph/issues"
},
"dependencies": {
"@astroband/graphql-postgres-subscriptions": "^1.0.10",
"@elastic/elasticsearch": "^7.6.0",
"@sentry/integrations": "^5.7.1",
"@sentry/node": "^5.7.1",
"apollo-datasource-rest": "^0.3.1",
"apollo-server": "^2.14.2",
"axios": "^0.21.1",
"bignumber.js": "^8.0.1",
"bluebird": "^3.5.3",
"dotenv": "^6.0.0",
"graphql": "^14.1.1",
"graphql-fields-list": "^2.1.1",
"graphql-relay": "^0.6.0",
"graphql-resolve-batch": "^1.0.2",
"graphql-subscriptions": "^1.0.0",
"grpc": "^1.24.3",
"js-xdr": "^1.1.0",
"minimist": "^1.2.3",
"object-dig": "^0.1.3",
"pg": "^8.2.1",
"pg-monitor": "^1.1.0",
"pg-promise": "^8.7.4",
"progress": "^2.0.3",
"retry": "^0.12.0",
"squel": "^5.12.2",
"stellar-base": "^3.0.4",
"typeorm": "^0.2.17",
"typescript-memoize": "^1.0.0-alpha.3",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/bluebird": "^3.5.25",
"@types/dotenv": "^4.0.3",
"@types/graphql-resolve-batch": "^1.1.3",
"@types/jest": "^24.0.11",
"@types/minimist": "^1.2.0",
"@types/pg": "^7.4.14",
"@types/progress": "^2.0.3",
"@types/retry": "^0.12.0",
"@types/rosie": "^0.0.35",
"apollo-cache-inmemory": "^1.2.9",
"apollo-client": "^2.4.1",
"apollo-link-http": "^1.5.4",
"apollo-link-ws": "^1.0.8",
"apollo-server-testing": "^2.14.2",
"codecov": "^3.7.1",
"jest": "^24.7.1",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^1.18.7",
"prettier": "^1.16.4",
"rosie": "^2.0.1",
"subscriptions-transport-sse": "^0.9.2",
"subscriptions-transport-ws": "^0.9.14",
"ts-jest": "^24.0.1",
"ts-node": "^6.0.5",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.9.5",
"ws": "^6.0.0"
},
"resolutions": {
"stellar-sdk/axios": "^0.19.0",
"acorn": "^6.4.1",
"kind-of": "^6.0.3",
"minimist": "^0.2.1"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"start": "nodemon ./src/graphql_server.ts",
"start-prod": "nodemon ./dist/graphql_server.js",
"dev": "nodemon --watch src && tslint-check",
"prod": "yarn build && yarn tslint && yarn start-prod",
"tslint": "tslint -c tslint.json -p tsconfig.json --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "jest",
"test:codecov": "codecov -f reports/coverage/*.json",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"bench": "ts-node ./benchmark/index.ts"
},
"license": "MIT",
"private": true,
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageDirectory": "reports/coverage",
"testResultsProcessor": "jest-sonar-reporter",
"roots": [
"<rootDir>/tests/"
]
},
"jestSonar": {
"reportPath": "reports"
}
}