This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "waggle",
"version": "4.3.15",
"author": "jk",
"description": "tlg-manager",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"lint": "eslint --ext .jsx,.js,.ts,.tsx ./src/",
"test": "DEBUG=ipfs:*,waggle:* jest ./src/**/* --runInBand --verbose --testPathIgnorePatterns=\".src/(!?nodeTest*)|(.node_modules*)\"",
"test-ci": "jest ./src/**/* --runInBand --colors --ci --silent --verbose --testPathIgnorePatterns=\".src/(!?nodeTest*)|(.node_modules*)\"",
"test-connect": "DEBUG='libp2p:websockets*' jest ./src/nodeTest/* --verbose",
"test-connect-ci": "jest ./src/nodeTest/* --colors --ci --silent --verbose"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ZbayApp/waggle.git"
},
"files": [
"lib/**/*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"transformIgnorePatterns": [
"/node_modules/"
],
"testRegex": "src/.*\\.test\\.(t|j)s$",
"testEnvironment": "node",
"testTimeout": 40000,
"setupFiles": [
"./jestSetup.js"
]
},
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.9",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.11",
"@types/socket.io": "^2.1.12",
"@types/validator": "^13.1.4",
"@types/jest": "^26.0.23",
"@types/orbit-db": "git+https://github.com/orbitdb/orbit-db-types.git",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"inquirer": "^8.1.2",
"jest": "^26.6.3",
"prettier": "^2.1.1",
"prettier-config-standard": "^1.0.1",
"tmp": "^0.2.1",
"typescript": "^4.0.5",
"ts-jest": "^26.5.6",
"yargs": "^17.1.0",
"pkijs": "~2.1.97",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^4.0.0",
"@zbayapp/identity": "^3.3.4",
"abortable-iterator": "^3.0.0",
"class-validator": "^0.13.1",
"cli-table": "^0.3.6",
"commander": "^7.2.0",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"debug": "^4.3.1",
"dotenv": "8.2.0",
"events": "^3.2.0",
"express": "^4.17.1",
"get-port": "^5.1.1",
"http-server": "^0.12.3",
"https-proxy-agent": "^5.0.0",
"ipfs": "^0.60.2",
"ipfs-log": "5.4.1",
"it-pipe": "^1.1.0",
"joi": "^17.4.0",
"libp2p": "^0.33.0",
"libp2p-bootstrap": "^0.13.0",
"libp2p-gossipsub": "^0.11.0",
"libp2p-kad-dht": "^0.24.2",
"libp2p-mplex": "^0.10.1",
"libp2p-websockets": "^0.16.2",
"multiaddr": "^10.0.1",
"orbit-db": "^0.28.0",
"orbit-db-io": "^1.0.2",
"orbit-db-store": "^4.3.2",
"peer-id": "^0.15.0",
"socket.io": "3.0.5",
"socks-proxy-agent": "^5.0.0",
"streaming-iterables": "^5.0.2",
"uint8arrays": "^1.1.0",
"url": "^0.11.0",
"validator": "^13.6.0"
}
}