-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "hjs-webpack",
"description": "Presets for setting up webpack with hotloading react and ES6(2015) using Babel.",
"version": "9.2.0",
"author": "Henrik Joreteg <henrik@andyet.net>",
"bin": {
"hjs-dev-server": "bin/hjs-dev-server.js"
},
"bugs": {
"url": "https://github.com/henrikjoreteg/hjs-webpack/issues"
},
"dependencies": {
"compression": "^1.7.1",
"connect-history-api-fallback": "^1.5.0",
"contains-path": "^1.0.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"find-root": "^1.1.0",
"http-proxy-middleware": "^0.17.4",
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0",
"lodash.pick": "^4.4.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
},
"devDependencies": {
"git-validate": "^2.2.2",
"standard": "^10.0.3"
},
"homepage": "https://github.com/henrikjoreteg/hjs-webpack",
"keywords": [
"config",
"human javascript",
"webpack"
],
"license": "MIT",
"main": "index.js",
"pre-commit": [
"lint",
"validate"
],
"repository": {
"type": "git",
"url": "https://github.com/henrikjoreteg/hjs-webpack"
},
"scripts": {
"lint": "standard",
"validate": "npm ls"
},
"standard": {
"ignore": [
"examples/*/public/*",
"examples/*/node_modules/*"
]
}
}