webpack-isomorphic-dev-middleware
Version:
The webpack-dev-middleware, but for isomorphic applications.
95 lines (94 loc) • 2.38 kB
JSON
{
"name": "webpack-isomorphic-dev-middleware",
"version": "4.1.0",
"description": "The webpack-dev-middleware, but for isomorphic applications.",
"keywords": [
"webpack",
"isomorphic",
"server-side",
"rendering",
"render",
"middleware",
"express"
],
"author": "André Cruz <andre@moxy.studio>",
"license": "MIT",
"bugs": "https://github.com/moxystudio/webpack-isomorphic-dev-middleware/issues",
"homepage": "https://github.com/moxystudio/webpack-isomorphic-dev-middleware",
"repository": {
"type": "git",
"url": "git@github.com:moxystudio/webpack-isomorphic-dev-middleware"
},
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master && npm publish"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"webpack": ">=2.0.0 <5.0.0",
"express": "^4.0.0"
},
"dependencies": {
"anser": "^1.3.0",
"chalk": "^2.0.0",
"compose-middleware": "^5.0.0",
"lodash.castarray": "^4.4.0",
"lodash.merge": "^4.6.0",
"lodash.omitby": "^4.6.0",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"p-props": "^1.0.0",
"require-from-string": "^2.0.0",
"webpack-dev-middleware": "^3.0.0",
"webpack-isomorphic-compiler": "^3.1.0",
"webpack-isomorphic-compiler-reporter": "^1.3.3",
"webpack-sane-compiler-notifier": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"eslint": "^4.0.0",
"eslint-config-moxy": "^5.2.0",
"express": "^4.15.2",
"husky": "^0.14.0",
"jest": "^22.0.0",
"lint-staged": "^7.2.0",
"lodash.escaperegexp": "^4.1.2",
"standard-version": "^4.2.0",
"strip-ansi": "^4.0.0",
"supertest": "^3.0.0",
"webpack": "^4.16.2"
},
"jest": {
"modulePathIgnorePatterns": [
"test/tmp/",
"test/configs/"
],
"coveragePathIgnorePatterns": [
"test/"
]
}
}