-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
90 lines (90 loc) · 2.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"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 <[email protected]>",
"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": "[email protected]: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",
"postrelease": "git push --follow-tags origin HEAD && 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": "^5.3.0",
"eslint-config-moxy": "^6.0.1",
"express": "^4.15.2",
"husky": "^0.14.0",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"lodash.escaperegexp": "^4.1.2",
"standard-version": "^4.2.0",
"strip-ansi": "^5.0.0",
"supertest": "^3.0.0",
"webpack": "^4.16.2"
},
"jest": {
"modulePathIgnorePatterns": [
"test/tmp/",
"test/configs/"
],
"coveragePathIgnorePatterns": [
"test/"
]
}
}