embark/packages/stack/proxy/package.json

76 lines
2.0 KiB
JSON

{
"name": "embark-proxy",
"version": "5.0.0-alpha.0",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Proxy to listen to blockchain requests and responses",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/stack/proxy#readme",
"bugs": "https://github.com/embark-framework/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/embark-framework/embark.git"
},
"main": "./dist/index.js",
"embark-collective": {
"build:node": true
},
"scripts": {
"_build": "npm run solo -- build",
"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",
"typecheck": "tsc",
"watch": "run-p watch:*",
"watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/runtime-corejs3": "7.6.3",
"core-js": "3.3.5",
"cors": "2.8.5",
"embark-core": "^5.0.0-alpha.0",
"embark-i18n": "^5.0.0-alpha.0",
"embark-utils": "^5.0.0-alpha.0",
"express": "4.17.1",
"express-ws": "4.0.0",
"web3-core-requestmanager": "1.2.1",
"web3-providers-ws": "1.2.1"
},
"devDependencies": {
"@types/cors": "2.8.6",
"@types/express": "4.17.1",
"@types/express-ws": "3.0.0",
"embark-solo": "^5.0.0-alpha.0",
"eslint": "5.7.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"tslint": "5.16.0",
"typescript": "3.6.3"
},
"engines": {
"node": ">=10.17.0 <12.0.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}