forked from dillonkearns/elm-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.97 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.97 KB
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
{
"name": "@dillonkearns/elm-graphql",
"version": "3.0.1",
"scripts": {
"build": "webpack",
"elm-nuke": "rm -rf elm-stuff && elm package install -y && cd tests && rm -rf elm-stuff && elm package install -y && cd ..",
"start": "cd examples && elm-live src/Starwars.elm --open -- --output=elm.js",
"test": "elm-test && cd generator && elm-test",
"test:watch": "elm-test --watch",
"gen:starwars": "npm run build && ./bin/elm-graphql https://elm-graphql.herokuapp.com --base Swapi --output examples/src",
"gen:normalize_test": "npm run build && cd ete_tests && ../bin/elm-graphql http://localhost:4000 --base Normalize && cd -",
"gen:github": "npm run build && ./bin/elm-graphql --introspection-file examples/github-schema.json --base Github --output examples/src",
"approve-compilation": "cd ete_tests && elm make src/NormalizeDemo.elm --output /dev/null && cd - && cd examples && elm make --output /dev/null src/Github.elm src/Starwars.elm src/complex/Main.elm src/SimpleMutation.elm",
"approve": "bin/approve",
"elm-analyse": "elm-analyse --serve"
},
"keywords": [
"elm",
"graphql"
],
"repository": "https://github.com/dillonkearns/elm-graphql",
"author": "Dillon Kearns",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/fs-extra": "^5.0.0",
"@types/glob": "^5.0.34",
"@types/node": "^8.5.2",
"@types/request": "^2.0.9",
"@types/webpack": "^3.8.1",
"elm": "^0.19.0-bugfix2",
"elm-analyse": "^0.13.3",
"elm-hot-loader": "0.5.4",
"elm-live": "3.0.5",
"elm-test": "^0.19.0-rev3",
"elm-webpack-loader": "5.0.0",
"fs-extra": "^5.0.0",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"elm-format": "^0.8.1",
"webpack": "^3.10.0"
},
"peerDependencies": {
"elm-format": ">= 0.8.0 < 1"
},
"dependencies": {
"encoding": "^0.1.12",
"glob": "^7.1.2",
"graphql-request": "^1.4.0",
"request": "^2.83.0"
},
"bin": {
"elm-graphql": "bin/elm-graphql"
}
}