-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.31 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
{
"version": "1.0.0",
"private": true,
"engines": {
"node": "^10.15.0",
"npm": "^6.7.0",
"yarn": "^1.13.0"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"eslint:test": "eslint src",
"eslint:fix": "eslint src --fix",
"prettier:test": "prettier --check \"./**/*.{json,scss,html}\"",
"prettier:fix": "prettier --write \"./**/*.{json,scss,html}\"",
"test": "yarn run eslint:test && yarn run prettier:test",
"fix": "yarn run eslint:fix && yarn run prettier:fix"
},
"license": "UNLICENSED",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"bootstrap-select": "^1.13.10",
"bootstrap-slider": "^10.6.1",
"bootstrap-tagsinput": "^0.7.1",
"clean-webpack-plugin": "^2.0.2",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"expose-loader": "^0.7.5",
"file-loader": "^3.0.1",
"glob-all": "^3.1.0",
"html-beautify-webpack-plugin": "^1.0.5",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-webpack-plugin": "^2.4.0",
"imports-loader": "^0.8.0",
"intl-tel-input": "^16.0.0",
"jquery": "^3.3.1",
"jquery-socialshare": "^1.0.3",
"masonry-layout": "^4.2.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"offline-plugin": "^5.0.6",
"owl.carousel2": "^2.2.1",
"popper.js": "^1.15.0",
"postcss-loader": "^3.0.0",
"preload-webpack-plugin": "^3.0.0-beta.3",
"prettier": "^1.16.4",
"prettier-webpack-plugin": "^1.2.0",
"purgecss-webpack-plugin": "^1.4.0",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.1.3",
"select2": "^4.0.13",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}