-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "3box-api",
"version": "1.4.2",
"description": "3box",
"main": "src/node.js",
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "IPFS_PATH=./src/__tests__/test-data/ipfs jest --coverage",
"start": "node ./src/run.js",
"start:dev": "./node_modules/.bin/nodemon ./src/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3box/3box-api.git"
},
"keywords": [
"ipfs",
"orbitdb"
],
"author": "3box",
"license": "MIT",
"bugs": {
"url": "https://github.com/3box/3box-api/issues"
},
"homepage": "https://github.com/3box/3box-api#readme",
"dependencies": {
"3box-orbitdb-plugins": "^2.0.0",
"3id-resolver": "^1.0.0",
"analytics-node": "^3.3.0",
"aws-sdk": "2.414.0",
"axios": "^0.19.0",
"bunyan": "^1.8.12",
"cids": "^0.7.1",
"datastore-level": "^1.1.0",
"datastore-s3": "^2.0.0",
"did-resolver": "^1.1.0",
"dotenv": "^6.2.0",
"exectimer": "^2.2.1",
"express": "^4.16.4",
"express-bunyan-logger": "^1.3.3",
"ipfs-block-service": "^0.17.1",
"ipfs-log": "^4.6.1",
"ipfs-repo": "^3.0.3",
"ipfs-unixfs": "^0.2.0",
"ipld": "^0.25.3",
"ipld-dag-pb": "^0.18.2",
"is-ipfs": "^0.6.1",
"js-sha256": "^0.9.0",
"level-mem": "^5.0.1",
"multihashes": "^0.4.15",
"muport-did-resolver": "^1.0.1",
"orbit-db": "^0.23.1",
"orbit-db-access-controllers": "^0.2.4",
"orbit-db-cache-redis": "0.0.3",
"orbit-db-feedstore": "^1.7.0",
"orbit-db-io": "^0.2.0",
"orbit-db-kvstore": "^1.7.0",
"redis": "^2.8.0",
"url-parse": "^1.4.7",
"yargs": "^13.2.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"src/__tests__/mocks/*",
"src/__tests__/test-data/*"
]
},
"bin": {
"3box-pinning-node": "./src/node.js"
},
"devDependencies": {
"ioredis": "^4.14.1",
"ioredis-mock": "^4.18.2",
"jest": "^23.6.0",
"nodemon": "^1.19.4",
"standard": "^12.0.1",
"supertest": "^4.0.2"
},
"standard": {
"env": [
"jest"
]
}
}