-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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
{
"name": "universal",
"version": "1.0.0",
"description": "Universal is WordPress theme build with Bootstrap 4",
"repository": "https://github.com/milanarandjelovic/wpuniversal",
"author": "Milan Arandjelovic",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"build": "webpack --progress --config assets/build/webpack.config.js",
"build:production": "webpack --progress -p --config assets/build/webpack.config.js",
"build:profile": "webpack --progress --profile --json --config assets/build/webpack.config.js",
"start": "webpack --hide-modules --watch --config assets/build/webpack.config.js",
"rmdist": "rimraf dist",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint assets/scripts assets/build",
"lint:styles": "stylelint \"assets/styles/**/*.{css,sass,scss,sss,less}\"",
"test": "npm run -s lint"
},
"browserslist": [
"last 2 versions",
"android 4",
"opera 12"
],
"engines": {
"node": ">= 6.9.4"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"browser-sync": "^2.18.13",
"browsersync-webpack-plugin": "^0.6.0",
"bs-html-injector": "^3.0.3",
"buble-loader": "^0.4.1",
"cache-loader": "^1.1.0",
"clean-webpack-plugin": "^0.1.17",
"copy-globs-webpack-plugin": "^0.2.0",
"css-loader": "^0.28.7",
"cssnano": "^3.10.0",
"eslint": "^4.10.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-webpack-plugin": "^1.5.2",
"import-glob": "^1.5.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"postcss-safe-parser": "^3.0.1",
"resolve-url-loader": "^2.2.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-recommended-scss": "^2.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.1.0",
"stylelint-webpack-plugin": "^0.9.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-assets-manifest": "^1.0.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-merge": "^4.1.0",
"yargs": "^10.0.3"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.6",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"popper": "^1.0.0",
"swiper": "^4.1.0",
"tether": "^1.4.0"
}
}