-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "graphql-events",
"version": "0.0.1",
"description": "Generates event from graphql queries",
"main": "dist/index.js",
"author": "Mathias Scherer <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"test": "jest",
"lint": "prettier --check src/* .github/*",
"lint:write": "prettier -w src/* .github/*"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"node-notifier": "^10.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.4"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@google-cloud/pubsub": "^2.18.1",
"@graphql-tools/load": "^7.3.2",
"@graphql-tools/url-loader": "^7.2.0",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"graphql": "^15.6.1",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.38"
}
}