-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "webpack-hmr-docker",
"version": "1.0.0",
"description": "Webpack with HMR on docker",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"test": "yarn lint",
"lint": "node_modules/.bin/eslint src",
"build-dev": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szujak/webpack-hmr-docker.git"
},
"keywords": [
"webpack",
"hmr",
"docker",
"hot",
"module",
"reload"
],
"author": "Adam Szajuk <szujak@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/szujak/webpack-hmr-docker/issues"
},
"homepage": "https://github.com/szujak/webpack-hmr-docker#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
},
"engines": {
"node": ">=8.6.0"
}
}