-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.72 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
{
"name": "linearized-matrix",
"version": "1.0.0",
"description": "Example server and development test client for Linearized Matrix",
"main": "index.js",
"repository": "[email protected]:matrix-org/linearized-matrix.git",
"author": "The Matrix.org Foundation C.I.C.",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"async-lock": "^1.4.0",
"body-parser": "^1.20.2",
"canonicalize": "^1.0.8",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"inquirer": "^8",
"node-forge": "^1.3.1",
"source-map-support": "^0.5.21",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/async-lock": "^1.4.0",
"@types/express": "^4.17.17",
"@types/express-ws": "^3.0.1",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": "^18",
"@types/node-forge": "^1.3.1",
"@types/source-map-support": "^0.5.6",
"@types/ws": "^8.5.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "yarn build",
"clean": "rimraf build",
"build": "yarn clean && yarn format && tsc -p tsconfig.build.json --listEmittedFiles",
"test": "jest",
"format": "prettier --config .prettierrc \"{src,test}/**/*.ts\" --write",
"lint": "tsc -p tsconfig.json --noEmit && prettier --config .prettierrc \"{src,test}/**/*.ts\" --check",
"dev:client": "yarn build && yarn dev:client:nobuild",
"dev:client:nobuild": "node build/client/index.js",
"dev:server": "yarn build && yarn dev:server:nobuild",
"dev:server:nobuild": "node build/server/index.js"
}
}