-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "backup",
"version": "0.0.0",
"private": true,
"description": "A tool to backup all data for disaster recovery.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "run-p start:*",
"start:ipfs": "ipfs daemon --init --init-profile=server",
"start:backup": "NODE_TLS_REJECT_UNAUTHORIZED=0 DEBUG=backup:* node bin.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alan Shaw",
"license": "(Apache-2.0 OR MIT)",
"dependencies": {
"@aws-sdk/client-s3": "^3.44.0",
"@aws-sdk/lib-storage": "^3.44.0",
"@ipld/dag-cbor": "^7.0.0",
"@ipld/dag-json": "^8.0.7",
"@ipld/dag-pb": "^2.1.15",
"@web-std/fetch": "^4.1.0",
"array-shuffle": "^3.0.0",
"debug": "^4.3.3",
"dotenv": "^16.0.1",
"format-number": "^3.0.0",
"go-ipfs": "^0.12.2",
"it-batch": "^1.0.9",
"it-ndjson": "^0.1.1",
"it-pipe": "^2.0.3",
"multiaddr": "^10.0.1",
"multiformats": "^9.5.4",
"npm-run-all": "^4.1.5",
"p-retry": "^5.1.0",
"pg": "^8.7.1",
"redis": "^4.1.0"
},
"devDependencies": {
"standard": "^17.0.0"
}
}