-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 1.99 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
{
"name": "apollo-link-electron",
"version": "0.1.0",
"description": "Get GraphQL results over IPC for Electron apps.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run dist",
"precommit": "lint-staged",
"prepush": "npm test",
"clean": "rimraf dist",
"build": "tsc",
"preview": "NODE_ENV=development electron test",
"dist": "npm-run-all clean build",
"dev": "npm-run-all dist preview",
"jest": "NODE_ENV=test jest",
"test": "npm-run-all dist jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firede/apollo-link-electron.git"
},
"keywords": [
"graphql",
"electron",
"apollo-link",
"ipc"
],
"author": "Firede <firede@firede.us>",
"license": "MIT",
"bugs": {
"url": "https://github.com/firede/apollo-link-electron/issues"
},
"homepage": "https://github.com/firede/apollo-link-electron#readme",
"devDependencies": {
"@types/graphql": "^0.12.6",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.0",
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"devtron": "^1.4.0",
"electron": "^1.8.4",
"electron-graphql": "^0.2.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"spectron": "^3.8.0",
"ts-jest": "^22.4.2",
"typescript": "^2.7.2"
},
"dependencies": {
"apollo-link": "^1.2.1"
},
"peerDependencies": {
"electron-graphql": "^0.2.0",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
}
}