-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3 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
{
"name": "mdev-digital-website",
"description": "MDEV DIGITAL | We are a hybrid agency specializing in custom software development, branding and marketing",
"version": "1.0.0",
"author": "MDEV Digital <contact@mdev.digital>",
"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-check-view",
"vue-in-viewport-directive",
"vue-meta",
"vue-router"
]
},
"dependencies": {
"axios": "^0.18.0",
"vue": "^2.6.7",
"vue-check-view": "^0.2.3",
"vue-in-viewport-directive": "^1.1.4",
"vue-meta": "^1.6.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.0.0",
"@moreira-development/crowbar-sass": "^0.1.1",
"@vue/babel-preset-app": "^3.6.0",
"autoprefixer": "^8.5.0",
"babel-loader": "v8.0.0-beta.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.3",
"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.1.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.5",
"prerender-spa-plugin": "^3.4.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"robotstxt-webpack-plugin": "^4.0.1",
"s3-website": "^3.3.0",
"sass-loader": "^7.0.1",
"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.4",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"vue-i18n": "^5.0.0",
"vue-loader": "^15.0.10",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.6.7",
"vuex": "^3.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.2"
}
}