This repository was archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.07 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "3box-pinning-node",
"version": "1.14.26",
"description": "IPFS Node that runs OrbitDB under the hood",
"main": "src/node.js",
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "rm -rf ./tmp ; mkdir -p ./tmp/test/one ; jest --forceExit --detectOpenHandles --coverage --runInBand",
"start": "node ./src/node.js",
"start:prod": "node --max-old-space-size=20480 ./src/node.js",
"start:prod:profile": "node --inspect=0.0.0.0:9229 --max-old-space-size=20480 ./src/node.js",
"start:dev": "./node_modules/.bin/nodemon ./src/node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3box-pinning-node.git"
},
"keywords": [
"ipfs",
"orbitdb"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/3box/3box-pinning-node/issues"
},
"homepage": "https://github.com/3box/3box-pinning-node#readme",
"dependencies": {
"3box-orbitdb-plugins": "^2.1.2",
"3id-resolver": "^1.0.0",
"analytics-node": "^3.3.0",
"aws-sdk": "^2.702.0",
"axios": "^0.19.0",
"bunyan": "^1.8.12",
"datastore-level": "^1.1.0",
"datastore-s3": "github:3box/js-datastore-s3",
"did-resolver": "^1.1.0",
"dotenv": "^6.2.0",
"exectimer": "^2.2.1",
"express": "^4.16.4",
"ipfs": "0.46.0",
"ipfs-http-client": "^44.1.0",
"ipfs-log": "^4.6.0",
"ipfs-repo": "^3.0.2",
"js-sha256": "^0.9.0",
"level-mem": "^5.0.1",
"multihashes": "^0.4.14",
"muport-did-resolver": "^1.0.3",
"orbit-db": "^0.24.2",
"orbit-db-cache-redis": "^0.1.2",
"os-utils": "0.0.14",
"redis": "^2.8.0"
},
"jest": {
"testEnvironment": "jest-environment-uint8array"
},
"bin": {
"3box-pinning-node": "./src/node.js"
},
"devDependencies": {
"jest": "^23.6.0",
"jest-environment-uint8array": "^1.0.0",
"lodash.defaultsdeep": "^4.6.1",
"nodemon": "^1.19.4",
"redis-mock": "^0.47.0",
"standard": "^14.1.0",
"supertest": "^4.0.2",
"tmp-promise": "^2.0.2"
},
"standard": {
"env": [
"jest"
]
}
}