-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.45 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
{
"name": "graphql-binary",
"version": "0.1.0",
"description": "GraphQL binary protocol for smaller network traffic and parsing performance",
"main": "index.js",
"repository": "https://github.com/esseswann/graphql-binary",
"author": "jsus <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --watch --detectOpenHandles",
"dev": "nodemon --exec ts-node"
},
"dependencies": {
"graphql": "16.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.3.1",
"@graphql-codegen/typed-document-node": "2.2.2",
"@graphql-codegen/typescript": "2.4.2",
"@graphql-codegen/typescript-operations": "2.2.2",
"@graphql-tools/mock": "8.5.1",
"@graphql-tools/schema": "8.3.1",
"@graphql-typed-document-node/core": "3.1.1",
"@types/jest": "27.4.0",
"@types/node": "17.0.9",
"graphql-query-compress": "1.2.4",
"jest": "27.4.7",
"nodemon": "2.0.15",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts,graphql"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts)",
"**/?(*.)+(test).+(ts)"
],
"transform": {
"^.+\\.(ts|js)$": "ts-jest"
}
}
}