diff options
author | stuebinm | 2021-02-19 00:23:51 +0100 |
---|---|---|
committer | stuebinm | 2021-02-19 00:23:51 +0100 |
commit | 56ef5217cc03408b8d2b09809880e2cfda7a5855 (patch) | |
tree | 2809161fad1994e98780451b118891a5885d6ad3 /elm.json |
Simple Slide-changing client
Everything works, EXCEPT:
- choosing slidesets
- choosing rooms
- choosing the number of slides
at runtime.
Diffstat (limited to '')
-rw-r--r-- | elm.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/elm.json b/elm.json new file mode 100644 index 0000000..2d0d191 --- /dev/null +++ b/elm.json @@ -0,0 +1,24 @@ +{ + "type": "application", + "source-directories": [ + "src" + ], + "elm-version": "0.19.1", + "dependencies": { + "direct": { + "elm/browser": "1.0.2", + "elm/core": "1.0.5", + "elm/html": "1.0.0", + "elm/json": "1.1.3" + }, + "indirect": { + "elm/time": "1.0.0", + "elm/url": "1.0.0", + "elm/virtual-dom": "1.0.2" + } + }, + "test-dependencies": { + "direct": {}, + "indirect": {} + } +} |