This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
113 lines (113 loc) · 3.13 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vue-boilerplate",
"description": "An opinionated Vue.js 2 boilerplate",
"version": "1.0.0",
"author": "Marcos Moura <[email protected]>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/marcosmoura/vue-boilerplate"
},
"scripts": {
"dev": "babel-node build/server/development.js",
"build": "rm -rf dist && babel-node build/server/production.js",
"test": "ava src/**/*.test.js",
"coverage": "rm -rf .nyc_output .coverage && mkdir .nyc_output && cross-env NODE_ENV=test nyc yarn run test",
"lint": "eslint --ext .js,.vue --fix src build"
},
"dependencies": {
"es6-promise": "^4.1.0",
"vue": "^2.2.6",
"vue-i18n": "^6.0.0",
"vue-router": "^2.3.1",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.1.2",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"ava": "^0.19.0",
"avoriaz": "^1.9.4",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"css-mqpacker": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.0.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.2.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"module-alias": "^2.0.0",
"node-sass": "^4.5.2",
"nyc": "^10.2.0",
"offline-plugin": "^4.6.2",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"optimize-js-plugin": "^0.0.4",
"ora": "^1.2.0",
"prerender-spa-plugin": "^2.0.1",
"sass-loader": "^6.0.3",
"url-loader": "^0.5.8",
"vue-html-loader": "^1.2.4",
"vue-loader": "^11.3.4",
"vue-node": "^1.1.0",
"vue-style-loader": "^2.0.5",
"vue-template-compiler": "^2.2.6",
"vuegister": "^0.2.0",
"vuegister-plugin-babel": "^0.2.0",
"webpack": "^2.3.3",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-merge": "^4.1.0"
},
"browserslist": [
"last 3 versions",
"not IE < 10"
],
"nyc": {
"sourceMap": false,
"instrument": false,
"report-dir": ".coverage",
"reporter": [
"lcov",
"html",
"text-summary"
],
"exclude": [
"build",
"**/*.test.js"
],
"extension": [
".js",
".vue"
]
},
"ava": {
"require": [
"babel-register",
"./build/test/setup.js"
]
}
}