-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.1 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
{
"name": "brainyduck",
"version": "1.0.0",
"description": "Quickly build powerful backends using only your graphql schemas",
"repository": "github:zvictor/brainyduck",
"keywords": [
"BaaS",
"backend",
"fauna",
"graphql",
"serverless",
"low-code",
"lowcode"
],
"license": "AGPL-3.0-or-later",
"type": "module",
"bin": "./cli.js",
"exports": {
".": {
"types": "./.cache/sdk.d.ts",
"import": "./.cache/sdk.mjs",
"require": "./.cache/sdk.cjs"
},
"./cache": {
"import": "./locateCache.js",
"require": "./locateCache.cjs"
},
"./utils": "./utils.js",
"./*": "./commands/*.js"
},
"main": "./.cache/sdk.cjs",
"types": "./.cache/sdk.d.ts",
"files": [
"/.cache",
"/commands",
"/scripts",
"*.cjs",
"*.js",
"tsconfig.json",
"tsup.config.ts",
"README.md"
],
"scripts": {
"prepublishOnly": "rm -Rf .cache ; cp -r ./protection ./.cache",
"test": "./tests/run-tests.sh"
},
"dependencies": {
"@graphql-codegen/core": "4.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "5.0.0",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-tools/load": "8.0.0",
"@graphql-tools/merge": "9.0.0",
"@graphql-tools/url-loader": "8.0.0",
"@swc/core": "1.3.69",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"chalk": "^5.3.0",
"chokidar": "3.5.3",
"commander": "11.0.0",
"constant-case": "3.0.4",
"debug": "4.3.4",
"execa": "7.1.1",
"fauna-shell": "0.15.0",
"faunadb": "4.8.0",
"figures": "5.0.0",
"fs-extra": "11.1.1",
"globby": "13.2.2",
"gql-generator": "1.0.19",
"graphql": "16.7.1",
"graphql-request": "6.1.0",
"graphql-tag": "2.12.6",
"log-symbols": "5.1.0",
"ora": "6.3.1",
"p-queue": "7.3.4",
"resolve-cwd": "3.0.0",
"tempy": "3.1.0",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"optionalDependencies": {
"node-fetch": "cjs"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/zvictor"
}
}