forked from relay-tools/vscode-apollo-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "vscode-apollo-relay",
"version": "1.4.2",
"description": "Simple configuration of vscode-apollo for Relay projects.",
"keywords": [
"apollo",
"graphql",
"relay",
"vscode"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/relay-tools/vscode-apollo-relay",
"homepage": "https://github.com/relay-tools/vscode-apollo-relay#readme",
"author": {
"name": "Eloy Durán",
"email": "[email protected]",
"url": "https://github.com/alloy"
},
"license": "MIT",
"scripts": {
"prepublish": "yarn run build",
"lint": "tslint -p ./tsconfig.json --type-check",
"test": "jest",
"prebuild": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "^12.7.4",
"apollo-language-server": "^1.15.0",
"graphql": "^14.5.6",
"jest": "24.9.0",
"prettier": "1.18.2",
"relay-compiler": "^6.0.0",
"relay-compiler-language-typescript": "^4.7.0",
"relay-config": "^6.0.0",
"standard-version": "7.0.0",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"tslint-config-prettier": "1.18.0",
"typescript": "3.6.2"
},
"peerDependencies": {
"relay-compiler": ">=5.0.0",
"relay-config": ">=5.0.0"
},
"engines": {
"node": ">= 8"
},
"files": [
"/dist/**/*"
],
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
}
}