-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "pinza",
"version": "0.1.0",
"description": "IPFS pin distribution system",
"main": "src/index.js",
"scripts": {
"start": "node src/test",
"dev": "ts-node-dev src/core/Client.ts",
"dev:old": "cross-env DEBUG=pinza:* & node src/test",
"dev:daemon": "cross-env DEBUG=pinza:* & pinza daemon",
"test": "mocha"
},
"author": "vaultec81",
"license": "GPL-3.0",
"dependencies": {
"@ceramicnetwork/common": "^1.6.0",
"@ceramicnetwork/http-client": "^1.4.0",
"@ceramicnetwork/stream-tile": "^1.3.2",
"@ceramicstudio/idx": "^0.12.2",
"@hapi/boom": "^9.1.0",
"@hapi/hapi": "^18.4.1",
"@hapi/joi": "^17.1.1",
"@nestjs/common": "^8.1.1",
"@nestjs/core": "^8.1.1",
"@nestjs/platform-express": "^8.1.1",
"@nestjs/swagger": "^5.1.1",
"3id-did-provider": "^1.1.1",
"ascii-table": "0.0.9",
"aviondb": "0.2.2",
"axios": "^0.21.1",
"datastore-fs": "^0.9.1",
"datastore-level": "^0.14.1",
"debug": "^4.1.1",
"dlv": "^1.1.3",
"dotenv": "^8.2.0",
"hapi-pino": "^8.0.0",
"interface-datastore": "^1.0.4",
"ipfs-http-client": "^53.0.1",
"ipfs-pubsub-room": "^2.0.1",
"it-pushable": "^1.4.2",
"k-bucket": "^5.0.0",
"merge-options": "^2.0.0",
"multihashes": "^0.4.15",
"orbit-db": "^0.24.1",
"orbit-db-identity-provider": "^0.3.0",
"p-queue": "^6.0.2",
"pretty-bytes": "^5.3.0",
"tmp": "^0.2.1",
"uri-to-multiaddr": "^3.0.2",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"mocha": "^7.1.0",
"nodemon": "^2.0.2",
"orbit-db-test-utils": "^0.8.5",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"bin": {
"pinza": "src/cli/bin.js"
}
}