forked from relay-tools/relay-compiler-language-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.79 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": "relay-compiler-language-typescript",
"version": "0.9.1-alpha.1",
"description": "A language plugin for Relay that adds TypeScript support, including emitting type definitions.",
"license": "MIT",
"keywords": [
"relay",
"graphql",
"react",
"typescript"
],
"contributors": [
{
"name": "Kaare Hoff Skovgaard",
"email": "[email protected]"
},
{
"name": "Eloy Durán",
"email": "[email protected]"
}
],
"homepage": "https://github.com/relay-tools/relay-compiler-language-typescript",
"repository": {
"type": "git",
"url": "https://github.com/relay-tools/relay-compiler-language-typescript.git"
},
"bugs": {
"url": "https://github.com/relay-tools/relay-compiler-language-typescript/issues"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf lib && tsc",
"relay": "node bin/relay-compiler.js --schema test/schema.graphql --src test/ --outputDir __generated__",
"test": "npm run type-check && jest",
"type-check": "tsc --noEmit --pretty",
"prettier": "prettier --write '{src,types}/**/*.ts'",
"sync-fixtures": "rsync -avh --delete --stats --progress ../relay/packages/relay-compiler/language/javascript/__tests__/fixtures/flow-generator/*.graphql test/fixtures/type-generator"
},
"dependencies": {
"immutable": "^3.7.6",
"invariant": "^2.2.2"
},
"peerDependencies": {
"relay-compiler": "*",
"relay-runtime": "*",
"typescript": "*"
},
"devDependencies": {
"@types/graphql": "^0.12.1",
"@types/immutable": "3.8.7",
"@types/invariant": "2.2.29",
"@types/jest": "^22.0.1",
"@types/node": "8.5.7",
"@types/relay-runtime": "^1.3.1",
"jest": "^22.1.4",
"prettier": "^1.10.2",
"relay-compiler": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-compiler-1.5.0-plugin.3.tgz",
"relay-runtime": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-runtime-1.5.0-plugin.3.tgz",
"relay-test-utils": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-test-utils-1.5.0-plugin.3.tgz",
"ts-jest": "^22.0.1",
"typescript": "2.6.2"
},
"resolutions": {
"relay-compiler": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-compiler-1.5.0-plugin.3.tgz",
"relay-runtime": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-runtime-1.5.0-plugin.3.tgz",
"relay-test-utils": "https://github.com/alloy/relay/releases/download/v1.5.0-plugin.3/relay-test-utils-1.5.0-plugin.3.tgz"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/.+?-test\\.tsx?$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}