summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorYukai Huang2016-10-07 23:05:23 +0800
committerYukai Huang2016-10-08 08:13:40 +0800
commit325d1f1a326a4ef5eaa070e56665c9b5680f1e36 (patch)
tree66e18bd4376e96c8e40f3b43a7757e99ba8894ee /package.json
parentf0269a161c06dc3a9990a4c82b30e500d690d30b (diff)
Create webpack config
Diffstat (limited to '')
-rw-r--r--package.json67
1 files changed, 62 insertions, 5 deletions
diff --git a/package.json b/package.json
index 94b08eac..6ca67191 100644
--- a/package.json
+++ b/package.json
@@ -4,12 +4,18 @@
"description": "Realtime collaborative markdown notes on all platforms.",
"main": "app.js",
"license": "MIT",
+ "scripts": {
+ "build": "webpack --config webpack.config.js --progress --colors --watch"
+ },
"dependencies": {
+ "Idle.Js": "github:shawnmclean/Idle.js",
"async": "^2.0.1",
"blueimp-md5": "^2.3.0",
"body-parser": "^1.15.2",
+ "bootstrap": "^3.3.7",
"chance": "^1.0.4",
"cheerio": "^0.20.0",
+ "codemirror": "^5.19.0",
"compression": "^1.6.2",
"connect-session-sequelize": "^3.1.0",
"cookie": "0.3.1",
@@ -19,14 +25,39 @@
"emojify.js": "^1.1.0",
"express": ">=4.14",
"express-session": "^1.14.0",
+ "file-saver": "^1.3.3",
+ "flowchart.js": "^1.6.3",
"formidable": "^1.0.17",
+ "gist-embed": "github:yukaii/gist-embed",
+ "handlebars": "^4.0.5",
"helmet": "^2.1.2",
- "highlight.js": "^9.5.0",
+ "highlight.js": "^9.7.0",
"i18n": "^0.8.3",
"imgur": "git+https://github.com/hackmdio/node-imgur.git",
+ "jquery": "^3.1.1",
+ "jquery-mousewheel": "^3.1.13",
+ "jquery-textcomplete": "^1.7.3",
+ "jquery-ui": "^1.12.1",
+ "js-cookie": "^2.1.3",
+ "js-sequence-diagrams": "^1000000.0.6",
+ "js-url": "^2.3.0",
"jsdom-nogyp": "^0.8.3",
+ "keymaster": "^1.6.2",
+ "list.js": "^1.2.0",
+ "lodash": "^4.16.4",
"lz-string": "1.4.4",
- "markdown-it": "^7.0.0",
+ "markdown-it": "^7.0.1",
+ "markdown-it-abbr": "^1.0.4",
+ "markdown-it-container": "^2.0.0",
+ "markdown-it-deflist": "^2.0.1",
+ "markdown-it-footnote": "^3.0.1",
+ "markdown-it-imsize": "^2.0.1",
+ "markdown-it-ins": "^2.0.0",
+ "markdown-it-mark": "^2.0.0",
+ "markdown-it-mathjax": "^1.0.3",
+ "markdown-it-regexp": "^0.4.0",
+ "markdown-it-sub": "^1.0.0",
+ "markdown-it-sup": "^1.0.0",
"markdown-pdf": "^7.0.0",
"meta-marked": "^0.4.1",
"method-override": "^2.3.6",
@@ -42,9 +73,12 @@
"passport-google-oauth20": "^1.0.0",
"passport-twitter": "^1.0.4",
"passport.socketio": "^3.6.2",
+ "pdfobject": "^2.0.201604172",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
+ "prismjs": "^1.5.1",
"randomcolor": "^0.4.4",
+ "raphael": "github:dmitrybaranovskiy/raphael",
"request": "^2.74.0",
"reveal.js": "3.3.0",
"sequelize": "^3.23.6",
@@ -52,20 +86,43 @@
"shortid": "2.2.6",
"socket.io": "1.4.8",
"sqlite3": "^3.1.4",
+ "store": "^1.3.20",
"string": "^3.3.1",
"tedious": "^1.14.0",
+ "to-markdown": "^3.0.1",
"toobusy-js": "^0.5.1",
- "winston": "^2.2.0"
+ "visibilityjs": "^1.2.4",
+ "viz.js": "^1.3.0",
+ "winston": "^2.2.0",
+ "xss": "^0.2.13"
},
"engines": {
"node": ">=4.x"
},
"bugs": "https://github.com/hackmdio/hackmd/issues",
- "keywords": ["Collaborative", "Markdown", "Notes"],
+ "keywords": [
+ "Collaborative",
+ "Markdown",
+ "Notes"
+ ],
"homepage": "https://hackmd.io",
- "maintainers": [{"name": "Max Wu", "email": "jackymaxj@gmail.com"}],
+ "maintainers": [
+ {
+ "name": "Max Wu",
+ "email": "jackymaxj@gmail.com"
+ }
+ ],
"repository": {
"type": "git",
"url": "https://github.com/hackmdio/hackmd.git"
+ },
+ "devDependencies": {
+ "babel-loader": "^6.2.5",
+ "bower-webpack-plugin": "^0.1.9",
+ "css-loader": "^0.25.0",
+ "extract-text-webpack-plugin": "^1.0.1",
+ "imports-loader": "^0.6.5",
+ "json-loader": "^0.5.4",
+ "webpack": "^1.13.2"
}
}