-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "@worko/document",
"version": "0.0.0",
"description": "Microservice that handle collaborative textual document edition",
"keywords": [
"microservice",
"gpe",
"etna",
"gdoc",
"jbourdale"
],
"author": "Jules Bourdalé <[email protected]>",
"homepage": "",
"license": "ISC",
"main": "lib/ms-doc-edition.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:module-5130/activity-30494/group-690332.git"
},
"scripts": {
"build": "rimraf lib && tsc",
"start": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"test": "echo \"Error: run tests from root\""
},
"devDependencies": {
"@types/express": "^4.17.0",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.2"
},
"dependencies": {
"@teamwork/websocket-json-stream": "^2.0.0",
"axios": "^0.19.0",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-validator": "^6.3.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.2.7",
"morgan": "^1.9.1",
"pg": "^7.14.0",
"rich-text": "^4.0.0",
"sequelize": "^5.21.3",
"sharedb": "^1.0.0-beta.23",
"sharedb-mongo": "^1.0.0-beta.11",
"ws": "^7.0.1"
}
}