forked from infinum/eightshift-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.33 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
{
"name": "inf_theme",
"version": "1.0.0",
"author": "Infinum",
"private": true,
"main": "",
"scripts": {
"__sassUnusedTheme": "sass-unused \"wp-content/themes/inf_theme/**/*.scss\"",
"__eslintTheme": "eslint wp-content/themes/inf_theme/skin/assets/",
"__stylelintTheme": "stylelint \"wp-content/themes/inf_theme/**/*.scss\" --syntax scss",
"precommitCss": "npm run __stylelintTheme",
"precommitCssUnused": "npm run __sassUnusedTheme",
"precommitJs": "npm run __eslintTheme",
"precommit": "npm run precommitJs && npm run precommitCss && npm run precommitCssUnused",
"rename": "./bin/rename.js",
"start": "webpack --progress --watch --display-error-details --display-reasons",
"build": "NODE_ENV=production webpack --progress"
},
"devDependencies": {
"@infinumjs/eslint-config": "^1.1.0",
"@infinumjs/stylelint-config": "^1.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.29.1",
"browser-sync-webpack-plugin": "^2.2.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.10.0",
"expose-loader": "^0.7.5",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"imports-loader": "^0.8.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.8.3",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.3",
"precss": "^3.1.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"stylelint": "^9.2.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"autoprefixer": "^8.2.0",
"babel-polyfill": "^6.26.0",
"bugsnag-js": "^4.4.0",
"css-mqpacker": "^6.0.2",
"cssnano": "^3.10.0",
"jquery": "^3.3.1",
"jquery-match-height": "^0.7.2",
"layzr.js": "^2.2.2",
"media-blender": "^2.1.0",
"normalize.css": "^8.0.0",
"postcss-font-magician": "^2.1.1",
"prompt-sync": "^4.1.6",
"replace-in-file": "^3.4.0",
"slick-carousel": "^1.8.1",
"whatwg-fetch": "^2.0.4"
},
"browserslist": [
"android >= 4.2",
"not ie < 11",
"last 2 versions",
"Safari >= 8"
]
}