-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "webpack-config-basic-dev",
"version": "1.9.1",
"description": "Basic Webpack config with React, ESLint and HMR support",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"webpack",
"webpack-config",
"react"
],
"author": "Aditya Mukherjee <[email protected]>",
"license": "MIT",
"dependencies": {
"clean-webpack-plugin": "^0.1.17",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"lodash.assign": "^4.2.0",
"stylelint": "^8.0.0",
"stylelint-webpack-plugin": "^0.10.3",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1"
},
"devDependencies": {
"jest": "^22.4.3"
},
"peerDependencies": {
"babel-loader": "^7.1.2",
"react-hot-loader": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/adityavm/webpack-config-basic-dev.git"
},
"bugs": {
"url": "https://github.com/adityavm/webpack-config-basic-dev/issues"
},
"homepage": "https://github.com/adityavm/webpack-config-basic-dev#readme"
}