-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "@matrix-org/node-http-rendezvous-server",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "The Matrix.org Foundation C.I.C.",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"uuid": "^9.0.1"
},
"scripts": {
"clean": "rm -rf dist",
"start": "node dist/index.js",
"build": "yarn clean && tsc --skipLibCheck",
"dev": "nodemon -e .ts -w . --exec 'ts-node src/index.ts'",
"dev:https": "nodemon -e .ts -w . --exec 'DEV_SSL=yes ts-node src/index.ts'",
"lint": "yarn lint:types && yarn lint:style",
"lint:style": "eslint src",
"lint:types": "tsc --noEmit --skipLibCheck",
"test": "yarn lint",
"release": "yarn semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.1.0",
"@eclass/semantic-release-docker": "^4.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-matrix-org": "^1.2.1",
"eslint-plugin-unicorn": "^52.0.0",
"husky": "^9.0.11",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}