-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.91 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.91 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tom-server",
"version": "0.0.1",
"description": "Identity Server for Twake, compliant with Matrix Identity Server spec",
"keywords": [
"matrix"
],
"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": "Yadd <yadd@debian.org>",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run softClean && lerna run build",
"clean": "rimraf packages/*/dist packages/*/coverage ./node_modules/.cache/nx packages/*/example/*.js*",
"softClean": "rimraf packages/*/dist",
"doc": "npm run doc:swagger && npm run doc:arch",
"doc:swagger": "node docs/swagger.cjs",
"doc:arch": "dot -Tpng -o docs/arch.png docs/arch.dot",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "lerna run test",
"watch": "lerna run watch",
"serve": "nodemon",
"dev": "concurrently -k \"npm run watch\" \"npm run serve\""
},
"dependencies": {
"@twake/amqp-connector": "^0.0.1",
"@twake/logger": "^0.0.1",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"ldapts": "^7.3.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@crowdsec/express-bouncer": "^0.1.0",
"@nx/workspace": "22.6.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^11.1.5",
"@small-tech/syswide-cas": "^6.0.2",
"@types/events": "^3.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/js-nacl": "^1.3.1",
"@types/js-yaml": "^4.0.5",
"@types/ldapjs": "^2.2.5",
"@types/lodash": "^4.14.197",
"@types/node": "^24",
"@types/node-cron": "^3.0.7",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.11.7",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"docker-compose": "^0.24.3",
"jest": "^29.5.0",
"js-nacl": "^1.4.0",
"ldapjs": "^2.3.3",
"lerna": "^9.0.7",
"moment": "^2.29.4",
"node-fetch": "^3.3.0",
"node-fetch-jest": "npm:node-fetch@^2.6.9",
"nodemon": "^3.1.10",
"nx": "22.6.1",
"rimraf": "^4.3.1",
"rollup": "^3.18.0",
"rollup-plugin-cleaner": "^1.0.0",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-dist": "^4.18.3",
"testcontainers": "^10.6.0",
"toad-cache": "^3.3.0",
"ts-jest": "^29.1.0",
"typescript": "^5.9.3"
},
"engines": {
"node": "24.14.0",
"npm": "11.9.0"
},
"volta": {
"node": "24.14.0",
"npm": "11.9.0"
}
}