embark/packages/plugins/basic-pipeline/package.json

111 lines
3.0 KiB
JSON

{
"name": "embark-basic-pipeline",
"version": "5.0.0-alpha.1",
"author": "Iuri Matias <iuri.matias@gmail.com>",
"contributors": [],
"description": "Basic pipeline for Embark that builds a DApp's frontend assets using webpack",
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/plugins/basic-pipeline#readme",
"bugs": "https://github.com/embark-framework/embark/issues",
"keywords": [
"blockchain",
"dapps",
"ethereum",
"ipfs",
"serverless",
"solc",
"solidity"
],
"files": [
"dist"
],
"license": "MIT",
"repository": {
"directory": "packages/plugins/basic-pipeline",
"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 test",
"reset": "npx rimraf dist embark-*.tgz package",
"solo": "embark-solo",
"test": "jest"
},
"eslintConfig": {
"extends": "../../../.eslintrc.json"
},
"dependencies": {
"@babel/core": "7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.6.0",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-destructuring": "7.6.0",
"@babel/plugin-transform-flow-strip-types": "7.6.3",
"@babel/plugin-transform-runtime": "7.6.2",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.6.0",
"@babel/runtime-corejs3": "7.6.3",
"async": "2.6.1",
"babel-loader": "8.0.6",
"babel-plugin-macros": "2.6.1",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"clone-deep": "4.0.0",
"colors": "1.3.2",
"core-js": "3.3.5",
"css-loader": "3.2.0",
"embark-core": "^5.0.0-alpha.1",
"embark-i18n": "^5.0.0-alpha.1",
"embark-utils": "^5.0.0-alpha.1",
"file-loader": "4.2.0",
"find-up": "4.1.0",
"fs-extra": "8.1.0",
"glob": "7.1.4",
"hard-source-webpack-plugin": "0.13.1",
"lodash.clonedeep": "4.5.0",
"node-sass": "4.13.0",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"url-loader": "2.2.0",
"webpack": "4.41.2"
},
"devDependencies": {
"babel-jest": "24.9.0",
"embark-solo": "^5.0.0-alpha.0",
"embark-testing": "^5.0.0-alpha.1",
"eslint": "5.7.0",
"jest": "24.9.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"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
}
}