embark/packages/stack/proxy/package.json
Michael Bradley, Jr c093cf88ea feat: support Node.js v12.x and newer
Remove the `<12.0.0` restriction re: Node.js version in the `"engines"`
settings for all the packages in the monorepo that had that restriction.

Add missing `"engines"` settings in `packages/plugins/snark/package.json`.

Adjust the Azure Pipelines config to include builds for Node.js v12.x and
v13.x.

Bump `solc` to `0.4.26` in `dapps/tests/app` and `dapps/tests/contracts`. It
was discovered that older versions suffered a fatal `Maximum call stack size
exceeded` error when run on Windows with Node.js v12.x or newer. Display a
warning re: the bad combo (solc version + Windows + Node version) if it's
detected at runtime.

Adjust the root `yarn.lock` so that the `sha3` transitive dependency resolves
to a newer version that is compatible with Node v13.x.
2020-01-20 08:28:24 -06:00

77 lines
2.0 KiB
JSON

{
"name": "embark-proxy",
"version": "5.1.0-nightly.0",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Proxy to listen to blockchain requests and responses",
"homepage": "https://github.com/embarklabs/embark/tree/master/packages/stack/proxy#readme",
"bugs": "https://github.com/embarklabs/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/stack/proxy",
"type": "git",
"url": "https://github.com/embarklabs/embark.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"embark-collective": {
"build:node": true,
"typecheck": true
},
"scripts": {
"_build": "npm run solo -- build",
"_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "npm-run-all lint:*",
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo"
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "7.7.4",
"@types/cors": "2.8.6",
"@types/express": "4.17.1",
"@types/express-ws": "3.0.0",
"core-js": "3.4.3",
"cors": "2.8.5",
"embark-core": "^5.1.0-nightly.0",
"embark-i18n": "^5.1.0-nightly.0",
"embark-logger": "^5.1.0-nightly.0",
"embark-utils": "^5.1.0-nightly.0",
"express": "4.17.1",
"express-ws": "4.0.0",
"web3-core-requestmanager": "1.2.4",
"web3-providers-ws": "1.2.4"
},
"devDependencies": {
"embark-solo": "^5.1.0-nightly.0",
"eslint": "5.7.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}