-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.75 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
{
"name": "webpack",
"description": "typo3 buildchain + webpack",
"author": "Boris Schauer <[email protected]>",
"private": true,
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"simple-progress-webpack-plugin": "^1.1.2",
"stylelint": "^10.0.1",
"stylelint-formatter-pretty": "^1.0.3",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"webpackbar": "^3.2.0"
},
"scripts": {
"set-node-version": "n 10",
"webpack:build:dev": "n 10 && ./node_modules/.bin/webpack --config ./webpack.dev.js",
"webpack:build:dev:watch": "n 10 && ./node_modules/.bin/webpack --config ./webpack.dev.js --watch",
"webpack:build:live": "n 10 && ./node_modules/.bin/webpack --config ./webpack.prod.js",
"stylelint:fix": "n 10 && ./node_modules/.bin/stylelint --syntax 'scss' ./Assets/Scss/**/*.scss --fix --custom-formatter=./node_modules/stylelint-formatter-pretty || exit 0",
"eslint:fix": "n 10 && ./node_modules/.bin/eslint -c ./.eslintrc.json --fix ./Assets || exit 0"
},
"dependencies": {
"bootstrap": "^4.3.1",
"imagemin-webpack-plugin": "^2.4.2",
"jquery": "^3.4.1",
"popper.js": "^1.15.0"
}
}