-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.01 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.01 KB
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
{
"name": "presto",
"version": "1.0.0",
"description": "A webpack boilerplate for building wordpress themes",
"author": "eddo81 <eduardo_jonnerstig@live.com>",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development node src/tools/build.js",
"build": "cross-env NODE_ENV=production node src/tools/build.js",
"favicon": "cross-env NODE_ENV=production node src/tools/utils/favicons.js",
"lint": "eslint --ext .js,.vue src"
},
"dependencies": {
"vue": "^2.5.2"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.26.0",
"browser-sync": "^2.23.5",
"browsersync-webpack-plugin": "^0.6.0",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"es6-promise": "^4.1.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^2.0.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^2.0.0",
"favicons": "^5.1.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.1.3",
"imagemin-mozjpeg": "^7.0.0",
"imagemin-webpack-plugin": "^2.1.1",
"import-glob": "^1.5.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"postcss-loader": "^2.0.8",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sass-resources-loader": "^1.3.1",
"strip-json-comments": "^2.0.1",
"url-loader": "^0.5.8",
"vue-loader": "^12.1.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.2",
"webpack": "^2.6.1",
"webpack-merge": "^4.1.0",
"webpack-sort-chunks": "^0.1.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}