-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
{
"name": "mangrove-graphql",
"version": "0.1.5",
"description": "Adaptive tree cache for GraphQL and Javascript",
"author": "Max Bolotin",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"files": [
"lib/cjs",
"lib/esm",
"README.md",
"LICENSE.md",
"package.json"
],
"repository": {
"type": "git",
"url": "[email protected]:ourstudio-se/mangrove.git"
},
"scripts": {
"build": "tsc -b && yarn fixup",
"watch": "tsc -b --watch",
"lint": "eslint 'src/**/*.ts'",
"test": "jest --no-watchman --forceExit",
"nuke-build-cache": "find . -iname tsconfig.tsbuildinfo -exec rm {} \\;",
"fixup": "./scripts/fixup.sh .",
"prepublish": "yarn build"
},
"devDependencies": {
"@envelop/core": "^5.0.1",
"@eslint/js": "^9.2.0",
"@graphql-tools/executor-http": "^1.0.9",
"@graphql-tools/schema": "^10.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fp-ts": "^2.16.5",
"glob": "^10.3.14",
"globals": "^15.2.0",
"ioredis": "^5.4.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"unique-names-generator": "^4.7.1"
},
"dependencies": {
"@graphql-tools/utils": "^10.2.0",
"@whatwg-node/fetch": "^0.9.17",
"dataloader": "^2.2.2",
"fast-json-stable-stringify": "^2.1.0",
"graphql": "^16.8.1"
}
}