mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 21:35:58 +00:00
ed02cc849f
BREAKING CHANGE: node: >=10.17.0 <12.0.0 npm: >=6.11.3 yarn: >=1.19.1 node v10.17.0 is the latest in the 10.x series and is still in the Active LTS lifecycle. Embark is still not compatible with node's 12.x and 13.x series (because of some dependencies), otherwise it would probably make sense to bump our minimum supported node version all the way to the most recent 12.x release. npm v6.11.3 is the version that's bundled with node v10.17.0. yarn v1.19.1 is the most recent version as of the time node v10.17.0 was released.
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "embark-webserver",
|
|
"version": "4.1.1",
|
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
|
"contributors": [],
|
|
"description": "Webserver for Embark",
|
|
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/stack/webserver#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/webserver",
|
|
"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": "eslint src/",
|
|
"qa": "npm-run-all lint _build",
|
|
"reset": "npx rimraf dist embark-*.tgz package",
|
|
"solo": "embark-solo"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "../../../.eslintrc.json"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs2": "7.6.2",
|
|
"async": "2.6.1",
|
|
"embark-i18n": "^4.1.1",
|
|
"embark-utils": "^4.1.1",
|
|
"express": "4.16.3",
|
|
"express-http-proxy": "1.5.1",
|
|
"express-ws": "4.0.0",
|
|
"open": "6.4.0",
|
|
"serve-static": "1.13.2"
|
|
},
|
|
"devDependencies": {
|
|
"embark-solo": "^4.1.1",
|
|
"eslint": "5.7.0",
|
|
"fs-extra": "8.1.0",
|
|
"glob": "7.1.4",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.17.0 <12.0.0",
|
|
"npm": ">=6.11.3",
|
|
"yarn": ">=1.19.1"
|
|
}
|
|
}
|