mirror of https://github.com/status-im/js-waku.git
Merge pull request #1127 from waku-org/weboko/packages
chore: move dependencies to devDependency section, remove unused
This commit is contained in:
commit
4d38aaa731
|
@ -30,7 +30,7 @@
|
|||
"no-constant-condition": ["error", { "checkLoops": false }],
|
||||
"import/no-extraneous-dependencies": [
|
||||
"error",
|
||||
{ "devDependencies": false }
|
||||
{ "devDependencies": ["**/*.test.ts", "**/*.spec.ts", "**/tests/**"] }
|
||||
],
|
||||
"sort-imports": [
|
||||
"error",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -98,8 +98,6 @@
|
|||
"it-length-prefixed": "^8.0.2",
|
||||
"it-pipe": "^2.0.4",
|
||||
"libp2p": "0.40.0",
|
||||
"chai": "^4.3.4",
|
||||
"fast-check": "^2.14.0",
|
||||
"p-event": "^5.0.1",
|
||||
"uint8arraylist": "^2.3.2",
|
||||
"uint8arrays": "^4.0.2",
|
||||
|
@ -136,6 +134,8 @@
|
|||
"karma-mocha": "^2.0.1",
|
||||
"karma-webpack": "^5.0.0",
|
||||
"mocha": "^9.1.3",
|
||||
"chai": "^4.3.4",
|
||||
"fast-check": "^2.14.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"p-timeout": "^6.0.0",
|
||||
"portfinder": "^1.0.28",
|
||||
|
|
|
@ -61,7 +61,6 @@
|
|||
"@waku/byte-utils": "*",
|
||||
"@waku/libp2p-utils": "*",
|
||||
"hi-base32": "^0.5.1",
|
||||
"chai": "^4.3.4",
|
||||
"debug": "^4.3.4",
|
||||
"dns-query": "^0.11.2",
|
||||
"uint8arrays": "^4.0.2",
|
||||
|
@ -80,6 +79,7 @@
|
|||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||
"@typescript-eslint/parser": "^5.8.1",
|
||||
"cspell": "^6.17.0",
|
||||
"chai": "^4.3.4",
|
||||
"eslint": "^8.6.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"@libp2p/interface-peer-discovery-compliance-tests": "^2.0.4",
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
"@multiformats/multiaddr": "^11.0.6",
|
||||
"@noble/secp256k1": "^1.3.4",
|
||||
"@waku/byte-utils": "*",
|
||||
"chai": "^4.3.6",
|
||||
"debug": "^4.3.4",
|
||||
"js-sha3": "^0.8.0"
|
||||
},
|
||||
|
@ -74,6 +73,7 @@
|
|||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||
"@typescript-eslint/parser": "^5.8.1",
|
||||
"cspell": "^6.17.0",
|
||||
"chai": "^4.3.6",
|
||||
"eslint": "^8.6.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-eslint-comments": "^3.2.0",
|
||||
|
|
|
@ -78,10 +78,8 @@
|
|||
"@waku/core": "*",
|
||||
"@waku/interfaces": "*",
|
||||
"@waku/proto": "*",
|
||||
"js-sha3": "^0.8.0",
|
||||
"chai": "^4.3.6",
|
||||
"debug": "^4.3.4",
|
||||
"fast-check": "^2.14.0"
|
||||
"js-sha3": "^0.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-commonjs": "^22.0.0",
|
||||
|
@ -100,7 +98,9 @@
|
|||
"prettier": "^2.1.1",
|
||||
"rollup": "^2.75.0",
|
||||
"ts-loader": "^9.4.1",
|
||||
"typescript": "^4.6.3"
|
||||
"typescript": "^4.6.3",
|
||||
"chai": "^4.3.6",
|
||||
"fast-check": "^2.14.0"
|
||||
},
|
||||
"typedoc": {
|
||||
"entryPoint": "./src/index.ts"
|
||||
|
|
|
@ -52,7 +52,6 @@
|
|||
"dependencies": {
|
||||
"@libp2p/interface-connection": "^3.0.3",
|
||||
"@libp2p/interface-peer-discovery": "^1.0.0",
|
||||
"@libp2p/interface-peer-discovery-compliance-tests": "^2.0.1",
|
||||
"@libp2p/interface-peer-id": "^1.0.6",
|
||||
"@libp2p/interface-peer-info": "^1.0.4",
|
||||
"@libp2p/interface-peer-store": "^1.2.3",
|
||||
|
|
|
@ -55,11 +55,8 @@
|
|||
"node": ">=16"
|
||||
},
|
||||
"dependencies": {
|
||||
"chai": "^4.3.6",
|
||||
"debug": "^4.3.4",
|
||||
"app-root-path": "^3.0.0",
|
||||
"portfinder": "^1.0.28",
|
||||
"mocha": "^9.1.3",
|
||||
"p-timeout": "^6.0.0",
|
||||
"tail": "^2.2.0",
|
||||
"@waku/byte-utils": "*",
|
||||
|
@ -72,6 +69,9 @@
|
|||
"@waku/dns-discovery": "*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^9.1.3",
|
||||
"chai": "^4.3.6",
|
||||
"debug": "^4.3.4",
|
||||
"@libp2p/bootstrap": "^5.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||
"@typescript-eslint/parser": "^5.8.1",
|
||||
|
|
Loading…
Reference in New Issue