-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "m3tering-console",
"version": "2.0.0",
"description": "Service console for providers on the m3tering protocol",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"test": "tsc --noEmit && jest"
},
"author": "Emmo00",
"license": "MIT",
"dependencies": {
"@ardrive/turbo-sdk": "^1.30.0",
"@chirpstack/chirpstack-api": "^4.7.0",
"@grpc/grpc-js": "^1.10.3",
"@streamr/sdk": "^103.1.0",
"arweave": "^1.15.7",
"better-sqlite3": "^12.2.0",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"express": "^4.19.1",
"express-handlebars": "^7.1.2",
"handlebars": "^4.7.8",
"mqtt": "^5.5.0",
"node-cron": "^4.2.1",
"ssh2": "^1.17.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.30",
"@types/ssh2": "^1.15.5",
"babel-jest": "^30.0.5",
"jest": "^30.0.5",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
}
}