Upgraded Yarn to v2, gundb to forked version and removed grpc

This commit is contained in:
emad-salah 2021-11-29 11:08:43 +01:00
parent e559becd42
commit 6c96c65dca
4 changed files with 783 additions and 3 deletions

8
.gitignore vendored
View file

@ -15,3 +15,11 @@ radata-*.tmp
*.key *.key
*-audit.json *-audit.json
# Yarn v2
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

768
.yarn/releases/yarn-3.1.1.cjs vendored Normal file

File diff suppressed because one or more lines are too long

2
.yarnrc.yml Normal file
View file

@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-3.1.1.cjs
nodeLinker: node-modules

View file

@ -7,6 +7,7 @@
"start": "node main.js -h 0.0.0.0 -c", "start": "node main.js -h 0.0.0.0 -c",
"dev": "node --trace-warnings --max-old-space-size=4096 main.js -h 0.0.0.0", "dev": "node --trace-warnings --max-old-space-size=4096 main.js -h 0.0.0.0",
"dev:watch": "nodemon main.js -- -h 0.0.0.0", "dev:watch": "nodemon main.js -- -h 0.0.0.0",
"dev:attach": "node --inspect --trace-warnings --max-old-space-size=4096 main.js -h 0.0.0.0",
"test": "mocha ./utils -b -t 50000 --recursive", "test": "mocha ./utils -b -t 50000 --recursive",
"typecheck": "tsc", "typecheck": "tsc",
"lint": "eslint \"services/gunDB/**/*.js\"", "lint": "eslint \"services/gunDB/**/*.js\"",
@ -38,8 +39,7 @@
"express-session": "^1.17.1", "express-session": "^1.17.1",
"google-proto-files": "^1.0.3", "google-proto-files": "^1.0.3",
"graphviz": "0.0.8", "graphviz": "0.0.8",
"grpc": "1.24.4", "gun": "Emad-salah/gun#2e4fea7518fa8866d258d5b8803b4cb4cc4f62ea",
"gun": "amark/gun#50af2d52ad6677fd5b95e5ed64fca7491c7877b5",
"husky": "^4.2.5", "husky": "^4.2.5",
"hybrid-relay-client": "git://github.com/shocknet/hybridRelayClient#a99e57794cf7a62f0f5b6aef53a35d6b77d0a889", "hybrid-relay-client": "git://github.com/shocknet/hybridRelayClient#a99e57794cf7a62f0f5b6aef53a35d6b77d0a889",
"jsonfile": "^4.0.0", "jsonfile": "^4.0.0",
@ -72,6 +72,7 @@
"@types/eccrypto": "^1.1.2", "@types/eccrypto": "^1.1.2",
"@types/express": "^4.17.1", "@types/express": "^4.17.1",
"@types/gun": "^0.9.2", "@types/gun": "^0.9.2",
"@types/istanbul-lib-report": "^3.0.0",
"@types/jsonwebtoken": "^8.3.7", "@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.168", "@types/lodash": "^4.14.168",
"@types/mocha": "^9.0.0", "@types/mocha": "^9.0.0",
@ -114,5 +115,6 @@
}, },
"engines": { "engines": {
"npm": "Use yarn!" "npm": "Use yarn!"
} },
"packageManager": "yarn@3.1.1"
} }