-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
86 lines (86 loc) · 2.29 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
{
"name": "graphql-transport-electron",
"version": "2.0.1",
"description": "Enables inter process communication between a graphql client & server in electron.",
"main": "lib/server.js",
"browser": "lib/client.js",
"typings": "lib/server.d.ts",
"author": "Sebastian Siemssen <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/fubhy/graphql-transport-electron#readme",
"contributors": [
"Sebastian Siemssen <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fubhy/graphql-transport-electron.git"
},
"bugs": {
"url": "https://github.com/fubhy/graphql-transport-electron/issues"
},
"keywords": [
"electron",
"ipc",
"graphql",
"apollo",
"apollo-link"
],
"files": [
"lib/"
],
"scripts": {
"prepublish": "yarn lint && yarn test && yarn build",
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf lib && rimraf coverage",
"dev": "ts-node-dev src/dev orders",
"format": "prettier --write src/{*,**/*}.ts",
"lint:prettier": "yarn prettier --list-different src/{*,**/*}.ts",
"lint:tslint": "tsc --noEmit && tslint src/{*,**/*}.ts",
"lint": "yarn lint:tslint && yarn lint:prettier",
"snyk": "synk test",
"test": "yarn jest",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@apollo/client": "^3.2.7",
"iterall": "^1.3.0",
"serialize-error": "^7.0.1",
"zen-observable-ts": "^0.8.21"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.8",
"@types/ramda": "^0.27.32",
"electron": "^9.1.0",
"graphql": "^15.4.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"snyk": "^1.428.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.ts": [
"yarn format",
"git add"
]
}
}