-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
81 lines (81 loc) · 2.4 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
{
"name": "vue-blog-demo",
"version": "1.0.0",
"description": "A Vue.js blog demo to demonstrate proper decoupling of api data and swapping of resources/providers",
"author": "Nicolas Udy <dev@udy.io>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "npm run dev",
"build": "node build/build.js",
"lint": "eslint --ext .js,.vue src"
},
"dependencies": {
"lodash.merge": "^4.6.2",
"scrollto-with-animation": "^4.5.2",
"vue": "^2.5.2",
"vue-disqus": "^2.0.3",
"vue-router": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^7.2.6",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^2.4.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"eslint": "^4.18.2",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.18.0",
"node-sass": "^4.9.3",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.4.0",
"pace": "0.0.4",
"pace-progress": "^1.0.2",
"portfinder": "^1.0.16",
"postcss-custom-media": "^6.0.0",
"prerender-spa-plugin": "^3.3.0",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.7",
"semver": "^5.5.0",
"shelljs": "^0.7.6",
"url-loader": "^0.5.8",
"vue-loader": "^13.7.2",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.22.3",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"last 2 versions",
"not ie <= 9"
]
}