-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "@harmoniclabs/mutexo-server",
"version": "0.1.0-dev5",
"type": "module",
"bin": {
"mutexo-server": "./dist/cli/index.js"
},
"scripts": {
"build": "rm -rf ./dist && tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"start": "npm run build && node dist/cli/index.js",
"cli": "npm run build && npm run cli:light",
"cli:light": "node dist/cli/index.js",
"test": "jest"
},
"dependencies": {
"@harmoniclabs/cardano-ledger-ts": "^0.3.2",
"@harmoniclabs/cbor": "^1.6.0",
"@harmoniclabs/mutexo-messages": "^0.0.22",
"@harmoniclabs/obj-utils": "^1.0.0",
"@harmoniclabs/ouroboros-miniprotocols-ts": "^0.0.5-dev0",
"@harmoniclabs/uint8array-utils": "^1.0.3",
"@types/express-rate-limit": "^6.0.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/request-ip": "^0.0.41",
"blake2": "^5.0.0",
"commander": "^12.1.0",
"express": "^4.18.2",
"get-port": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"picocolors": "^1.1.1",
"request-ip": "^3.3.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/blake2": "^4.0.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.6",
"dotenv": "^16.4.5",
"jest": "^29.6.2",
"tsc-alias": "^1.8.7",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^6.0.3"
}
}