-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.91 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
{
"name": "@cloudgraph/cg-provider-gcp",
"version": "0.39.0",
"description": "CloudGraph provider plugin for GCP used to fetch GCP cloud data.",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://www.cloudgraph.dev/",
"repository": "github:cloudgraphdev/cloudgraph-provider-gcp",
"bugs": "https://github.com/cloudgraphdev/cloudgraph-provider-gcp/issues",
"main": "dist/services/index.js",
"types": "dist/services/index.d.ts",
"author": "AutoCloud",
"license": "MPL-2.0",
"cloudGraph": {
"version": ">0.2"
},
"scripts": {
"build": "yarn prepack",
"generate-types": "graphql-codegen --config codegen.yml",
"prepare": "npx husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks",
"prepack": "rm -rf dist && yarn generate-types && tsc && yarn cpx 'src/**/*.graphql' dist",
"test": "NODE_ENV=test jest ./tests",
"lint": "eslint --config .eslintrc.json --ext .js,.ts ./",
"lint:fix": "eslint --fix --config .eslintrc.json --ext .js,.ts ./",
"terraform": "yarn terraform:init && yarn terraform:plan && yarn terraform:apply",
"terraform:init": "terraform -chdir=./tests/terraform init -input=false",
"terraform:plan": "terraform -chdir=./tests/terraform plan -out=tfplan -input=false",
"terraform:apply": "terraform -chdir=./tests/terraform apply -input=false tfplan",
"terraform:cleanup": "rimraf ./tests/terraform/{.terraform,.terraform.lock.hcl,tfplan} ./tests/terraform/*.{tfstate,tfplan,backup}"
},
"dependencies": {
"@cloudgraph/sdk": "0.23.0",
"@google-cloud/access-approval": "^2.1.2",
"@google-cloud/api-gateway": "^1.2.1",
"@google-cloud/asset": "^3.22.0",
"@google-cloud/bigquery": "^5.10.0",
"@google-cloud/bigquery-connection": "^1.5.1",
"@google-cloud/bigquery-data-transfer": "^2.3.0",
"@google-cloud/bigquery-reservation": "^1.4.0",
"@google-cloud/compute": "^3.0.0",
"@google-cloud/dataproc": "^3.2.0",
"@google-cloud/datastore": "^6.6.2",
"@google-cloud/dns": "^2.2.3",
"@google-cloud/essential-contacts": "^2.0.2",
"@google-cloud/firestore": "^5.0.2",
"@google-cloud/functions": "^1.2.0",
"@google-cloud/kms": "^2.10.0",
"@google-cloud/logging": "^9.6.4",
"@google-cloud/monitoring": "^2.3.5",
"@google-cloud/notebooks": "^1.3.1",
"@google-cloud/resource-manager": "^3.0.0",
"@google-cloud/secret-manager": "^3.10.1",
"@google-cloud/storage": "^5.16.1",
"@google-cloud/vpc-access": "^1.1.2",
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.3",
"chalk": "4.1.2",
"cuid": "2.1.8",
"dotenv": "10.0.0",
"graphql": "^16.2.0",
"lodash": "4.17.21",
"node-fetch": "^2.6.1",
"typescript": "4.3.5"
},
"devDependencies": {
"@autocloud/eslint-config": "^0.1.0",
"@graphql-codegen/cli": "^2.5.0",
"@graphql-codegen/typescript": "^2.4.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/jest": "^27.0.0",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.5",
"@types/pino": "^6.3.8",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"cpx": "^1.5.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^8.0.2",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"semantic-release": "^19.0.2",
"shx": "^0.3.4",
"ts-jest": "^27.1.5"
},
"lint-staged": {
"*.{ts,graphql,json}": [
"yarn lint:fix",
"git add --force"
]
},
"resolutions": {
"**/braces": "^2.3.1",
"**/glob-parent": "^5.1.2",
"**/jsdoc": "^4.0.0",
"**/uri-js": "^3.0.1"
}
}