-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.74 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
{
"name": "@wesleymostien/boilerplate",
"version": "1.0.0",
"private": true,
"author": "Wesley Mostien <wesley.mostien@gmail.com>",
"scripts": {
"build": "webpack --config config/webpack/webpack.babel.js --env.prod --progress",
"dev": "webpack-dev-server --config config/webpack/webpack.babel.js --progress",
"i18n": "babel-node src/plugin/i18n/check.js",
"lint": "npm run prettier && npm run lint:css:fix && npm run lint:js:fix",
"lint:css": "stylelint ./**/*.{css,scss,vue} --cache",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js": "eslint './**/*.{js,vue}' --cache",
"lint:js:fix": "npm run lint:js -- --fix",
"prettier": "prettier --write .",
"prettier:i18n": "prettier --write src/i18n/locale/*.js",
"webpack": "webpack --config config/webpack/webpack.babel.js --hide-modules --progress --watch"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"@babel/runtime": "^7.12.5",
"autoprefixer": "^9.8.5",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"core-js": "^3.6.5",
"css-loader": "^3.6.0",
"directory-named-webpack-plugin": "^4.0.1",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^4.3.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^1.3.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"resolve-url-loader": "^3.1.2",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.18.0",
"stylelint-webpack-plugin": "^2.1.0",
"svg-sprite-loader": "^5.0.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^4.1.0",
"vue": "^2.6.11",
"vue-i18n": "^8.18.2",
"vue-loader": "^15.9.3",
"vue-router": "^3.3.4",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.3.19",
"vuetify-loader": "^1.6.0",
"vuex": "^3.5.1",
"vuex-persistedstate": "^3.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.9"
},
"devDependencies": {
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.12.1",
"@mdi/js": "^5.9.55",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^7.1.0",
"eslint-plugin-vuetify": "^1.0.0-beta.7",
"friendly-errors-webpack-plugin": "^1.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"webpack-dev-server": "^3.11.0"
}
}