-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "Webpack-Setup",
"version": "1.0.0",
"description": "Sample Webpack-Setup",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"start": "webpack-dev-server --env.mode development --display-error-details",
"build": "webpack --env.mode production",
"deploy": "gh-pages -d build",
"build:stats": "webpack --env production --json > stats.json",
"debug": "node --inspect --debug-brk ./node_modules/webpack/bin/webpack.js",
"prod:debug": "npm run debug -- --mode production",
"dev:debug": "npm run debug -- --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NaviMarella/Webpack-Setup.git"
},
"keywords": [],
"author": "NaviItsMe",
"license": "MIT",
"bugs": {
"url": "https://github.com/NaviMarella/Webpack-Setup/issues"
},
"homepage": "https://github.com/NaviMarella/Webpack-Setup#readme",
"sideEffects": false
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"cssnano": "^4.0.3",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"git-revision-webpack-plugin": "^3.0.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.4.1",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.16.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}