-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 985 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 985 Bytes
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-ace-backend",
"version": "0.0.1",
"description": "ShareDB-powered backend for collaborative editing in the Source Academy.",
"type": "module",
"main": "index.js",
"repository": "https://github.com/source-academy/sharedb-ace-backend",
"license": "Apache-2.0",
"private": true,
"scripts": {
"eslint": "eslint index.js",
"format": "eslint --fix index.js && prettier --write index.js",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 index.js && prettier --check index.js",
"start": "node index.js"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"dependencies": {
"@koa/cors": "^5.0.0",
"@teamwork/websocket-json-stream": "^2.0.0",
"koa": "^3.1.2",
"koa-bodyparser": "^4.4.1",
"koa-easy-ws": "^2.1.0",
"sharedb": "^5.1.1",
"uuid": "^11.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"prettier": "^3.6.2"
}
}