forked from velotiotech/collab-edit-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 962 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
32
33
34
{
"name": "repo",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run start:express",
"start:yjs": "YPERSISTENCE=./dbDir HOST=:: PORT=11569 node ./node_modules/y-websocket/bin/server.js",
"start:express": "YPERSISTENCE=./dbDir node app.js",
"fe:serve": "webpack serve --progress --content-base client/",
"fe:dist": "webpack --mode=production",
"heroku-postbuild": "npm run fe:dist"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"lodash-es": "^4.17.20",
"morgan": "~1.9.1",
"quill": "^1.3.7",
"quill-cursors": "^3.0.1",
"y-quill": "^0.1.4",
"y-websocket": "^1.3.11",
"yjs": "^13.5.0"
},
"devDependencies": {
"css-loader": "^5.0.2",
"html-webpack-plugin": "^5.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}