forked from Webstrates/Webstrates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.35 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "Webstrates",
"version": "1.6.0",
"description": "Webstrates is a research prototype enabling collaborative editing of websites through DOM manipulations realized by Operational Transformation using ShareJS. Webstrates observes changes to the DOM using MutationObservers.",
"keywords": [
"Operational Transformation",
"HCI",
"Collaborative Editing"
],
"scripts": {
"start": "npm run build && node webstrates.js",
"build": "NODE_ENV='production' webpack -p",
"test": "mocha --bail tests/{unit,functional}-tests"
},
"homepage": "https://www.webstrates.net/",
"license": "Apache-2.0",
"author": {
"name": "Kristian Borup Antonsen",
"email": "[email protected]"
},
"contributors": [
{
"name": "Clemens N. Klokmose",
"email": "[email protected]"
},
{
"name": "Roman Rädle",
"email": "[email protected]"
}
],
"dependencies": {
"archiver": "^1.3.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.2",
"bson": "^4.0.1",
"client-sessions": "^0.7.0",
"console-stamp": "^0.2.2",
"crypto": "^1.0.1",
"csvtojson": "^1.1.9",
"diff-match-patch": "^1.0.0",
"express": "^4.8.0",
"express-ws": "^3.0.0",
"filewatcher-webpack-plugin": "^1.2.0",
"fs-sync": "^1.0.2",
"graceful-fs": "^4.1.15",
"html-to-jsonml": "0.0.2",
"http-auth": "^2.2.0",
"human-readable-ids": "^1.0.3",
"json0-ot-diff": "^1.0.1",
"jsonml-tools": "git+http://github.com/Webstrates/jsonml-tools.git#master",
"md5-file": "^4.0.0",
"mime-types": "^2.1.17",
"mongodb": "^2.1.19",
"multer": "^1.2.0",
"optimist": "^0.6.1",
"os": "^0.1.1",
"passport": "^0.2.1",
"passport-github": "^0.1.5",
"passport-google-oauth2": "^0.1.6",
"passport-oauth2-profilemap": "0.0.1",
"redis": "^2.6.3",
"request": "^2.88.0",
"sharedb": "^1.0.0-beta.6",
"sharedb-mongo": "1.0.0-beta.2",
"sharedb-redis-pubsub": "^1.0.0-beta.1",
"shortid": "^2.0.1",
"tmp": "0.0.33",
"url": "^0.11.0",
"webpack": "^2.5.1",
"wrapper-webpack-plugin": "^1.0.0",
"ws": "0.4.32",
"yauzl": "^2.9.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-loader": "^1.9.0",
"mocha": "^3.5.3",
"puppeteer": "^1.11.0"
}
}