-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
86 lines (86 loc) · 2.53 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
{
"name": "webpack-pug-scss-boiperplate",
"version": "2.1.3",
"description": "A webpack boilerplate for building web apps",
"main": "./app/scripts/index.js",
"author": "Alex Nozdriukhin",
"license": "MIT",
"scripts": {
"analyze": "webpack-bundle-analyzer ./stats.json",
"build": "webpack --env production --progress",
"start": "nodemon --watch webpack.config.js --exec \"webpack-dev-server --open --hot --env development\""
},
"repository": {
"type": "git",
"url": "https://github.com/alexnoz/webpack-pug-scss-boilerplate.git"
},
"keywords": [
"boilerplate",
"webpack",
"pug",
"jade",
"sass",
"scss"
],
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.4.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-compat": "^3.1.1",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"fast-sass-loader": "^1.4.7",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"glob": "^7.1.3",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "0.6.0",
"node-sass": "4.11.0",
"nodemon": "^1.18.11",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"pug-html-loader": "^1.1.5",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "1.2.3",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.2.1",
"webpack-stats-plugin": "0.2.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {}
}