-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
103 lines (103 loc) · 3.27 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
102
103
{
"name": "matrix-appservice-irc",
"version": "3.0.2",
"description": "An IRC Bridge for Matrix",
"main": "app.js",
"bin": "./bin/matrix-appservice-irc",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node app.js",
"start:pool": "node lib/pool-service/IrcConnectionPool.js",
"prepare": "yarn run build",
"build": "yarn run build:app && yarn run build:widget",
"build:app": "tsc --project ./tsconfig.json",
"build:widget": "vite build --config widget/vite.config.mts",
"dev:widget": "vite dev --config widget/vite.config.mts",
"test": "ts-node --project spec/tsconfig.json node_modules/jasmine/bin/jasmine --stop-on-failure=true",
"test:e2e": "jest --config spec/e2e/jest.config.js --forceExit",
"lint": "eslint -c .eslintrc --max-warnings 0 'spec/**/*.js' 'spec/**/*.ts' 'src/**/*.ts' && eslint -c ./widget/.eslintrc.js 'widget/src/**/*.{ts,tsx}'",
"check": "yarn test && yarn lint",
"ci-test": "nyc --report text jasmine",
"ci": "yarn lint && yarn ci-test"
},
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-appservice-irc.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matrix-org/matrix-appservice-irc/issues"
},
"dependencies": {
"@sentry/node": "^7.107.0",
"ajv": "^8.12.0",
"bluebird": "^3.7.2",
"diff": "^5.1.0",
"escape-string-regexp": "^4.0.0",
"extend": "^3.0.2",
"he": "^1.2.0",
"ioredis": "^5.3.1",
"logform": "^2.4.2",
"matrix-appservice-bridge": "^10.2.2",
"matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@^0.7.0-element.1",
"matrix-org-irc": "^3.0.0",
"nopt": "^7.2.0",
"nedb": "^1.8.0",
"p-queue": "^8.0.1",
"pg": "^8.8.0",
"quick-lru": "^5.1.1",
"sanitize-html": "^2.7.2",
"semver": "^7.5.4",
"typed-emitter": "^2.1.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tsconfig/node20": "^20.1.4",
"@types/bluebird": "^3.5.36",
"@types/diff": "^5.0.2",
"@types/express": "4.17.21",
"@types/express-serve-static-core": "4.17.43",
"@types/extend": "^3.0.1",
"@types/he": "^1.1.2",
"@types/jasmine": "^5.1.4",
"@types/nedb": "^1.8.12",
"@types/node": "^20.11.29",
"@types/nopt": "^3.0.29",
"@types/pg": "^8.11.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/sanitize-html": "^2.6.2",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"cross-fetch": "^4.0.0",
"eslint": "^8.24.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"homerunner-client": "^0.0.6",
"jasmine": "^3.99.0",
"jest": "29.7.0",
"matrix-widget-api": "^1.4.0",
"node-mocks-http": "^1.12.1",
"nyc": "^15.1.0",
"postcss": "^8.4.21",
"proxyquire": "^2.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"url-join": "^5.0.0",
"vite": "^5.1.6"
}
}