-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 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
{
"name": "connector",
"version": "1.0.0",
"description": "Connector service",
"main": "src/index.ts",
"scripts": {
"start": "npm run fix-olm-dependency && tsc && node ./build/src/index.js",
"test": "env NODE_ENV=test jest --config ./jest.unit.config.js --colors",
"debug": "ts-node-dev --inspect --respawn --exit-child --watch src --transpile-only src/index.ts",
"fix-olm-dependency": "cp -r ./src/@matrix-org ./node_modules/",
"build": "npm run fix-olm-dependency && rm -rf ./build && tsc",
"lint": "npm run fix-olm-dependency && tsc --noEmit && eslint . --ext .js,.ts --quiet",
"lint:fix": "tsc --noEmit && eslint . --ext .js,.ts --fix --quiet",
"prepare": "husky"
},
"keywords": [
"connector",
"service"
],
"engines": {
"npm": ">=10.0.0",
"node": ">=22.0.0"
},
"author": "SIMS",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/knex": "^0.16.1",
"@types/node": "^22.13.9",
"@types/pg": "^8.11.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "3.3.3",
"ts-jest": "^29.3.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@user-office-software/duo-logger": "^2.2.1",
"@user-office-software/duo-message-broker": "^1.7.0",
"axios": "^1.12.0",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.21.2",
"kafkajs": "^2.2.3",
"knex": "^3.1.0",
"matrix-js-sdk": "24.1.0",
"pg": "^8.14.1",
"prom-client": "^15.1.3",
"reflect-metadata": "^0.2.2",
"ts-node-dev": "^2.0.0",
"tsyringe": "^4.8.0"
}
}