-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@streamr/node",
"version": "103.3.1",
"description": "A full-featured node implementation for the Streamr Network",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/broker"
},
"bin": {
"streamr-node": "dist/bin/streamr-node.js",
"streamr-node-init": "dist/bin/streamr-node-init.js",
"delete-expired-data": "dist/bin/delete-expired-data.js",
"entry-point": "dist/bin/entry-point.js"
},
"main": "./dist/src/exports.js",
"types": "./dist/src/exports.d.ts",
"files": [
"dist",
"!*.tsbuildinfo",
"README.md",
"LICENSE",
"plugins.md",
"configs",
"configuration.md"
],
"scripts": {
"build": "tsc -b",
"check": "tsc -p tsconfig.jest.json",
"clean": "jest --clearCache --config '{}' || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
"test": "npm run test-unit && npm run test-integration && npm run test-sequential",
"test-unit": "jest test/unit",
"test-sequential": "jest --bail --forceExit --maxWorkers=1 test/sequential # always run sequential tests with maxWorkers=1",
"test-integration": "jest --bail --forceExit test/integration && npm run test-sequential"
},
"author": "Streamr Network AG <contact@streamr.network>",
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"dependencies": {
"@inquirer/prompts": "^7.9.0",
"@streamr/config": "^5.9.2",
"@streamr/dht": "103.3.1",
"@streamr/sdk": "103.3.1",
"@streamr/utils": "103.3.1",
"aedes": "^1.0.2",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"cassandra-driver": "^4.8.0",
"chalk": "^4.0.0",
"commander": "^14.0.2",
"consistent-hash": "^1.1.1",
"cors": "^2.8.6",
"ethers": "^6.13.0",
"eventemitter3": "^5.0.4",
"express": "^5.2.1",
"heap": "^0.2.6",
"lodash": "^4.18.1",
"merge2": "^1.4.1",
"p-limit": "^3.1.0",
"qs": "^6.14.0",
"uuid": "^11.1.0",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@inquirer/testing": "^2.1.51",
"@streamr/network-contracts": "^9.1.0",
"@streamr/test-utils": "103.3.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/heap": "^0.2.35",
"@types/lodash": "^4.17.24",
"@types/merge2": "^1.4.4",
"@types/qs": "^6.15.0",
"@types/stream-to-array": "^2.3.3",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"async-mqtt": "^2.6.1",
"stream-to-array": "^2.3.0",
"supertest": "^7.2.2"
}
}