-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@twake/server",
"version": "0.0.1",
"description": "This is the Twake on Matrix server",
"keywords": [
"matrix",
"twake",
"server"
],
"homepage": "https://ci.linagora.com/publicgroup/oss/twake/tom-server",
"bugs": {
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server/-/issues"
},
"repository": {
"type": "git",
"url": "https://ci.linagora.com/publicgroup/oss/twake/tom-server.git"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Jordy Cabannes",
"email": "[email protected]"
},
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"package.json",
"dist",
"templates",
"*.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:example",
"build:example": "rollup -p @rollup/plugin-typescript -e express,@twake/server -m -o example/tom-server.js example/tom-server.ts",
"build:lib": "rollup -c",
"start": "node example/tom-server.js",
"test": "LOG_TRANSPORTS=File LOG_FILE=/dev/null jest"
},
"dependencies": {
"@opensearch-project/opensearch": "^2.5.0",
"@twake/matrix-application-server": "*",
"@twake/matrix-identity-server": "*",
"@twake/utils": "*",
"lodash": "^4.17.21",
"qrcode": "^1.5.4",
"redis": "^4.6.6",
"uuid": "^11.0.3",
"validator": "^13.11.0"
},
"optionalDependencies": {
"@crowdsec/express-bouncer": "^0.1.0",
"ldapjs": "^2.3.3",
"pg": "^8.10.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/qrcode": "^1.5.5"
}
}