-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "spark-evaluate",
"type": "module",
"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 ."
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/pg": "^8.11.10",
"dotenv": "^16.4.5",
"mocha": "^10.8.2",
"standard": "^17.1.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@filecoin-station/spark-impact-evaluator": "^1.1.1",
"@glif/filecoin-address": "^3.0.12",
"@influxdata/influxdb-client": "^1.35.0",
"@ipld/car": "^5.3.3",
"@ipld/dag-json": "^10.2.3",
"@sentry/node": "^8.35.0",
"@ucanto/core": "^10.0.1",
"@ucanto/principal": "^9.0.1",
"@web3-storage/car-block-validator": "^1.2.0",
"@web3-storage/w3up-client": "^16.4.1",
"debug": "^4.3.7",
"drand-client": "^1.2.6",
"ethers": "^6.13.4",
"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.2",
"p-retry": "^6.2.0",
"pg": "^8.13.1",
"postgrator": "^7.3.0"
},
"standard": {
"env": [
"mocha"
]
}
}