-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "mpa-frontend-template",
"version": "0.12.0",
"description": "Template based on webpack, pug, stylus, es6, postcss for multi page applications",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"start": "webpack --watch --mode development --env server",
"lint": "eslint ./src"
},
"author": "Evgenii Kuznetsov <[email protected]> (https://github.com/evgen3)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.23.6",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^3.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.9.0",
"extract-loader": "^2.0.1",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"if-webpack-plugin": "^1.0.5",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^2.1.3",
"pug-html-loader": "^1.1.5",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-sprite-loader": "^3.7.3",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.3.7",
"webpack-fix-style-only-entries": "^0.0.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"jquery": "^3.3.1",
"normalize.css": "^8.0.0"
}
}