-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.53 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
{
"name": "subgraph-cache",
"main": "index.ts",
"scripts": {
"build": "cd function && yarn build",
"postinstall": "cd function && yarn install",
"test": "cd function && yarn test",
"codegen": "ts-node src/codegen.ts && yarn lint",
"execute": "cd function && yarn execute",
"lint": "prettier --write . && eslint --fix --config ./.eslintrc.js . --ext .jsx,.js,.tsx,.ts"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.12.2",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-eslint/eslint-plugin": "^3.12.0",
"@graphql-typed-document-node/core": "^3.1.1",
"@pulumi/gcp": "^6.0.0",
"@pulumi/pulumi": "^3.0.0",
"@types/json-schema": "^7.0.11",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jsonschema-bigquery": "^5.1.0",
"prettier": "^2.7.1",
"ts-json-schema-generator": "^2.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"graphql": "^16.6.0"
},
"engines": {
"node": ">=18",
"npm": "please-use-yarn",
"pnpm": "please-use-yarn",
"yarn": ">=1.22.0 <2.0.0"
}
}