-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.69 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.69 KB
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
115
116
117
118
119
120
121
122
123
124
{
"name": "@cloudgraph/cg-provider-azure",
"version": "0.64.0",
"description": "CloudGraph provider plugin for Azure used to fetch Azure cloud data.",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://www.cloudgraph.dev/",
"repository": "github:cloudgraphdev/cloudgraph-provider-azure",
"bugs": "https://github.com/cloudgraphdev/cloudgraph-provider-azure/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": {
"@azure/arm-appinsights": "^4.0.0",
"@azure/arm-appservice": "^11.0.0",
"@azure/arm-authorization": "^8.4.1",
"@azure/arm-cdn": "^6.0.0",
"@azure/arm-cognitiveservices": "^7.0.0",
"@azure/arm-compute": "^17.3.0",
"@azure/arm-containerregistry": "^10.0.0",
"@azure/arm-containerservice": "^15.1.0",
"@azure/arm-cosmosdb": "^15.0.0",
"@azure/arm-datafactory": "^10.2.0",
"@azure/arm-datalake-analytics": "^1.1.1",
"@azure/arm-dns": "^5.0.0",
"@azure/arm-eventgrid": "^13.0.0",
"@azure/arm-eventhub": "^5.0.0",
"@azure/arm-hybridkubernetes": "^2.0.0",
"@azure/arm-keyvault": "^2.0.0",
"@azure/arm-machinelearningservices": "^5.0.0",
"@azure/arm-monitor": "^7.0.0",
"@azure/arm-mysql": "^5.0.0",
"@azure/arm-network": "^26.0.0",
"@azure/arm-operationalinsights": "^8.0.0",
"@azure/arm-operations": "^3.0.0",
"@azure/arm-policy": "^5.0.0",
"@azure/arm-postgresql": "^6.0.0",
"@azure/arm-privatedns": "^3.0.0",
"@azure/arm-recoveryservices": "^5.0.0",
"@azure/arm-recoveryservices-siterecovery": "^4.0.0",
"@azure/arm-recoveryservicesbackup": "^8.1.0",
"@azure/arm-rediscache": "^6.1.0",
"@azure/arm-resources": "^5.0.0",
"@azure/arm-security": "^4.0.0",
"@azure/arm-servicebus": "^5.0.0",
"@azure/arm-sql": "^9.0.0",
"@azure/arm-sqlvirtualmachine": "^4.1.1",
"@azure/arm-storage": "^17.1.0",
"@azure/arm-subscriptions": "^5.0.0",
"@azure/arm-synapse": "^8.0.0",
"@azure/arm-trafficmanager": "^6.0.0",
"@azure/core-http": "^2.2.4",
"@azure/identity": "^2.0.4",
"@azure/storage-blob": "^12.8.0",
"@azure/storage-queue": "^12.9.0",
"@cloudgraph/sdk": "0.22.0",
"@graphql-tools/load-files": "^6.5.3",
"@graphql-tools/merge": "^8.2.3",
"@microsoft/microsoft-graph-client": "^3.0.2",
"@microsoft/microsoft-graph-types": "^2.16.0",
"@microsoft/microsoft-graph-types-beta": "^0.25.0-preview",
"axios": "^0.26.1",
"chalk": "4.1.2",
"cuid": "2.1.8",
"graphql": "^16.2.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "4.17.21",
"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/isomorphic-fetch": "^0.0.36",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.4",
"@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": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"semantic-release": "^19.0.2",
"shx": "^0.3.3",
"ts-jest": "^27.0.4"
},
"lint-staged": {
"*.{ts,graphql,json}": [
"yarn lint:fix",
"git add --force"
]
}
}