-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
80 lines (80 loc) · 2.14 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
{
"name": "fauna-gql-upload",
"version": "2.5.0",
"description": "Manage your FaunaDB resources in within your project and upload them using a single command",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.10.0"
},
"bin": {
"fauna-gql": "dist/cli.js",
"fgu": "dist/cli.js"
},
"keywords": [
"faunadb",
"graphql",
"cli",
"IaC",
"database"
],
"author": "Carl Hallén Jansson <[email protected]>",
"license": "ISC",
"dependencies": {
"@graphql-codegen/core": "^2.3.0",
"@graphql-codegen/typescript": "^2.4.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@graphql-tools/code-file-loader": "^7.2.2",
"@graphql-tools/graphql-file-loader": "^7.3.3",
"@graphql-tools/load": "^7.4.1",
"@graphql-tools/url-loader": "^7.5.3",
"cli-spinner": "^0.2.10",
"dotenv": "^8.2.0",
"esbuild": "^0.8.2",
"node-fetch": "^2.6.1",
"prompts": "^2.3.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/cli-spinner": "^0.2.0",
"@types/fetch-mock": "^7.3.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.8",
"@types/prompts": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^26.6.3",
"eslint": "^6.8.0",
"faunadb": "4.0.0",
"fetch-mock": "^9.11.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^26.0.1",
"typescript": "^4.0.5"
},
"peerDependencies": {
"faunadb": ">=4.0.0",
"graphql": "^15.4.0 || ^16.0.0"
},
"optionalDependencies": {
"typescript": "^4.0.5"
},
"scripts": {
"test": "jest",
"build": "tsc",
"watch": "tsc --watch",
"prepublish": "yarn test && yarn build",
"mkdocs": "mkdocs build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Plazide/fauna-gql-upload.git"
},
"bugs": {
"url": "https://github.com/Plazide/fauna-gql-upload/issues"
},
"homepage": "https://github.com/Plazide/fauna-gql-upload#readme"
}