diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2022-05-22 03:45:37 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2022-05-22 03:45:37 +0100 |
commit | d408e6b8bd47b8c5ac5d2218943c11d576705583 (patch) | |
tree | 70ad7e52b8ed09483a551b461e91a093c6cc6554 /package.json | |
parent | b7141d7cf932004e6718fbf76994d24e16d46fba (diff) | |
download | lustre-d408e6b8bd47b8c5ac5d2218943c11d576705583.tar.gz lustre-d408e6b8bd47b8c5ac5d2218943c11d576705583.zip |
:heavy_plus_sign: Add @monaco-editor/react as a dev dependency for the playground.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/package.json b/package.json index 06683e5..4c43fc8 100644 --- a/package.json +++ b/package.json @@ -10,13 +10,15 @@ "clean": "rm -rf build dist", "build": "gleam test && parcel build test/example/index.html", "build:docs": "gleam docs build && cp -a ./build/dev/docs/lustre/. ./docs/", - "start": "gleam test && concurrently --kill-others \"chokidar \"src/*\" \"test/example/*\" -c \\\"gleam test\\\"\" \"parcel test/example/index.html\"", - "start:docs": "concurrently --kill-others \"chokidar \"src/*\" \"test/example/*\" -c \\\"npm run build:docs\\\"\" \"http-server docs\"", + "start": "gleam test && concurrently --kill-others \"chokidar \"src/*\" \"test/*\" -c \\\"gleam test\\\"\" \"parcel test/example/index.html\"", + "start:playground": "gleam test && concurrently --kill-others \"chokidar \"src/*\" \"test/*\" -c \\\"gleam test\\\"\" \"parcel test/playground/index.html\"", + "start:docs": "concurrently --kill-others \"chokidar \"src/*\" \"test/*\" -c \\\"npm run build:docs\\\"\" \"http-server docs\"", "start:clean": "npm run clean && npm start" }, "author": "", "license": "MIT", "devDependencies": { + "@monaco-editor/react": "^4.4.5", "chokidar-cli": "^3.0.0", "concurrently": "^7.0.0", "http-server": "^14.1.0", @@ -25,7 +27,8 @@ }, "alias": { "example": "./build/dev/javascript/lustre/dist/example", - "lustre": "./build/dev/javascript/lustre/dist/lustre" + "lustre": "./build/dev/javascript/lustre/dist", + "playground": "./build/dev/javascript/lustre/dist/playground" }, "dependencies": { "react": "^17.0.2", |