diff options
author | Vincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com> | 2019-10-21 23:52:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 23:52:50 +0200 |
commit | 26c93a796eceb3de136695548ab80e5455bd932a (patch) | |
tree | fa1f36802cdae44625a7a87960c5347e127f326d /package.json | |
parent | ba671a7c0880f8154a7b86d4cb172b0171e84021 (diff) | |
parent | 016dc180d41c28c8fb0883b09a55b69cb060a0c1 (diff) | |
download | wcms-26c93a796eceb3de136695548ab80e5455bd932a.tar.gz wcms-26c93a796eceb3de136695548ab80e5455bd932a.zip |
Merge pull request #13 from n-peugnet/add-code-mirror
Include CodeMirror in edit page
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..7d1d4fb --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "wcms", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "watch": "webpack --env dev --watch", + "build": "webpack --env prod" + }, + "dependencies": { + "codemirror": "^5.49.0" + }, + "devDependencies": { + "css-loader": "^3.2.0", + "style-loader": "^1.0.0", + "webpack": "^4.41.2", + "webpack-cli": "^3.3.9" + } +} |