-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1022 Bytes
/
package.json
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
{
"name": "sharedb-example-rich-text",
"version": "0.0.1",
"description": "A simple rich-text editor example based on Quill and ShareDB",
"main": "server.js",
"scripts": {
"build-edit-js": "./node_modules/.bin/browserify article-edit.js -o static/dist/article-edit.js",
"build-view-js": "./node_modules/.bin/browserify article-view.js -o static/dist/article-view.js",
"build": "mkdir -p static/dist/ && npm run -s build-edit-js && npm run -s build-view-js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Nate Smith",
"contributors": [
"Avital Oliver <[email protected]> (https://aoliver.org/)"
],
"license": "MIT",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.14.0",
"quill": "^1.0.0-beta.11",
"rich-text": "^3.0.1",
"sharedb": "^1.0.0-beta",
"sharedb-mongo": "^1.0.0-beta.4",
"websocket-json-stream": "^0.0.1",
"ws": "^1.1.0"
},
"devDependencies": {
"browserify": "^13.0.1"
}
}