forked from MdevDigitalInc/black-mesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.9 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
{
"name": "black-mesa-vue",
"description": "Complete Vue.JS Boilerplate for kickstarting projects.",
"version": "1.0.0",
"author": "Lucas Moreira <hello@lucasmoreira.dev>",
"private": true,
"main": "webpack.config.js",
"scripts": {
"dev": "npm run lintcss && npm run lintvue && webpack-dev-server --open --config webpack.dev.js",
"lintcss": "stylelint '**/*.scss' --syntax scss",
"lintvue": "stylelint '**/*.vue' --syntax scss",
"prod": "webpack --config webpack.prod.js",
"build": "npm run lintcss && npm run lintvue && npm run prod",
"clean": "rm -r dist/",
"build-staging": "npm run build && s3-website deploy && npm run clean",
"build-images": "./build-images.sh",
"deploy-staging": "s3-website deploy",
"deploy-live": "./live-deploy.sh"
},
"browserslist": "> 0.25%, ie >=11, safari >= 8",
"vue": {
"transpileDependencies": [
"vue-meta",
"vue-router"
]
},
"dependencies": {
"axios": "^0.19.0",
"vue": "^2.6.12",
"vue-meta": "^2.4.0",
"vue-router": "^3.4.9",
"vuex": "^3.5.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.5.5",
"@vue/babel-preset-app": "^3.10.0",
"autoprefixer": "^8.5.0",
"babel-loader": "v8.0.0-beta.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.12",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"crowbar-sass": "^0.1.3",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^4.19.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-html": "^4.0.6",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"imagemin-webp-webpack-plugin": "^3.2.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.6",
"prerender-spa-plugin": "^3.4.0",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"robotstxt-webpack-plugin": "^4.0.1",
"s3-website": "^3.3.0",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^1.3.3",
"sitemap-webpack-plugin": "^0.6.0",
"style-loader": "^0.21.0",
"stylelint": "^9.10.1",
"stylelint-processor-html": "^1.0.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"vue-check-view": "^0.2.4",
"vue-i18n": "^5.0.0",
"vue-in-viewport-directive": "^1.1.4",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}