forked from Webstrates/Webstrates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.32 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
84
85
{
"name": "Webstrates",
"version": "1.7.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",
"watch": "webpack -w",
"test": "mocha --bail tests/unit-tests tests/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]"
},
{
"name": "Rolf Bagge",
"email": "[email protected]"
}
],
"dependencies": {
"@babel/core": "7.8.0",
"@babel/preset-env": "7.9.0",
"archiver": "1.3.0",
"babel-loader": "8.0.6",
"body-parser": "1.19.0",
"bson": "4.0.3",
"client-sessions": "0.8.0",
"console-stamp": "0.2.9",
"csvtojson": "1.1.12",
"diff-match-patch": "1.0.4",
"express": "4.17.1",
"express-ws": "4.0.0",
"fs-sync": "1.0.6",
"graceful-fs": "4.2.3",
"html-to-jsonml": "0.0.6",
"http-auth": "3.2.4",
"human-readable-ids": "1.0.4",
"json0-ot-diff": "1.0.5",
"jsonml-tools": "git+http://github.com/Webstrates/jsonml-tools.git#master",
"md5-file": "4.0.0",
"mime-types": "2.1.26",
"mongodb": "3.6.x",
"multer": "1.4.2",
"optimist": "0.6.1",
"os": "0.1.1",
"passport": "0.4.1",
"passport-github": "1.1.0",
"passport-google-oauth2": "0.2.0",
"passport-oauth2-profilemap": "0.0.1",
"redis": "2.8.0",
"request": "2.88.0",
"sharedb": "1.1.0",
"sharedb-mongo": "1.0.0-beta.11",
"sharedb-redis-pubsub": "1.0.0-beta.1",
"shortid": "2.2.15",
"tmp": "0.1.0",
"url": "0.11.0",
"webpack": "2.7.0",
"wrapper-webpack-plugin": "1.0.0",
"yauzl": "2.10.0"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "4.19.1",
"eslint-loader": "1.9.0",
"mocha": "6.2.2",
"puppeteer": "1.20.0"
}
}