-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 956 Bytes
/
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
{
"name": "live-crawler",
"version": "1.0.0",
"main": "src/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc -b tsconfig.json",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
"start": "node dist/index.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@streamr/dht": "102.1.0",
"@streamr/geoip-location": "^102.1.0",
"@streamr/sdk": "102.1.0",
"@streamr/trackerless-network": "102.1.0",
"@streamr/utils": "102.1.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"p-limit": "3.1.0",
"semver": "^7.7.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.17.19",
"@types/semver": "^7.5.8",
"eslint": "^9.20.1",
"eslint-config-streamr-ts": "^6.1.0",
"typescript": "5.7.3"
}
}