-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.34 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
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
100
101
{
"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/*",
"landing"
],
"scripts": {
"build": "npm run softClean && lerna run build",
"clean": "rimraf packages/*/dist packages/*/coverage ./node_modules/.cache/nx packages/*/example/*.js*",
"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",
"format:check": "prettier --check .",
"format:check-diff": "prettier --check $(git diff $(git rev-parse --abbrev-ref --symbolic-full-name @{u}) --name-status|grep -E '^M|A'|cut -f2)",
"format:fix": "prettier --write .",
"format:fix-diff": "prettier --write $(git checkout|grep -E '^(M|A)'|cut -f2)",
"postinstall": "chmod u+x .husky/*",
"lint": "eslint packages/*/src --ext .ts",
"lint-fix": "eslint --fix packages/*/src --ext .ts",
"prepare": "husky install",
"softClean": "rimraf packages/*/dist",
"test": "lerna run test"
},
"dependencies": {
"@remix-run/express": "^1.16.0",
"express": "^4.18.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@crowdsec/express-bouncer": "^0.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@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-cron": "^3.0.7",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"docker-compose": "^0.24.3",
"esbuild": "^0.20.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"js-nacl": "^1.4.0",
"lerna": "^7.1.4",
"moment": "^2.29.4",
"node-fetch": "^3.3.0",
"node-fetch-jest": "npm:node-fetch@^2.6.9",
"nx": "^16.5.3",
"nx-cloud": "latest",
"prettier": "2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"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": "^4.9.5"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "^19.4.0",
"@nx/nx-linux-x64-gnu": "^19.4.0"
}
}