-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 1.3 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
{
"name": "Relay.swift",
"version": "1.0.0",
"description": "The Relay GraphQL framework, ported to Swift and SwiftUI.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"relay": "npm run relay-starwars && npm run relay-todo && npm run relay-examples",
"relay-starwars": "relay-compiler --src Sources/RelayTestHelpers/StarWars --schema Sources/RelayTestHelpers/StarWars/schema.graphql --language swift --artifactDirectory Sources/RelayTestHelpers/__GeneratedStarWars__",
"relay-todo": "relay-compiler --src Sources/RelayTestHelpers/ToDo --schema Sources/RelayTestHelpers/ToDo/schema.graphql --language swift --artifactDirectory Sources/RelayTestHelpers/__GeneratedToDo__",
"relay-examples": "(cd RelayTodo && relay-compiler) && (cd RelayStarWars && relay-compiler) && (cd RelayPokedex && relay-compiler)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjm/Relay.swift.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjm/Relay.swift/issues"
},
"homepage": "https://github.com/mjm/Relay.swift#readme",
"dependencies": {
"graphql": "^15.1.0",
"relay-compiler": "^10.1.3",
"relay-compiler-language-swift": "file:relay-compiler-language-swift",
"relay-config": "^9.1.0"
}
}