-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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": "@filecoin-station/spark-evaluate",
"type": "module",
"version": "1.0.4",
"scripts": {
"migrate": "node bin/migrate.js",
"start": "node bin/spark-evaluate.js",
"test": "npm run test:types && npm run test:lint && npm run test:unit",
"test:lint": "standard",
"test:unit": "mocha",
"test:types": "tsc -p .",
"release": "np"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/pg": "^8.11.11",
"dotenv": "^16.4.7",
"mocha": "^11.1.0",
"np": "^10.1.0",
"standard": "^17.1.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@filecoin-station/spark-impact-evaluator": "^1.2.4",
"@glif/filecoin-address": "^3.0.12",
"@influxdata/influxdb-client": "^1.35.0",
"@ipld/car": "^5.4.0",
"@ipld/dag-json": "^10.2.3",
"@sentry/node": "^8.51.0",
"@ucanto/core": "^10.2.1",
"@ucanto/principal": "^9.0.2",
"@web3-storage/car-block-validator": "^1.2.0",
"@web3-storage/w3up-client": "^16.5.2",
"debug": "^4.4.0",
"drand-client": "^1.2.6",
"ethers": "^6.13.5",
"ipfs-car": "^1.2.0",
"ipfs-unixfs-exporter": "^13.6.1",
"just-percentile": "^4.2.0",
"k-closest": "^1.3.0",
"ms": "^2.1.3",
"multiformats": "^13.3.1",
"p-map": "^7.0.3",
"p-retry": "^6.2.1",
"pg": "^8.13.1",
"postgrator": "^8.0.0"
},
"standard": {
"env": [
"mocha"
]
}
}