mirror of
https://github.com/a2nt/cropper-image-mask.git
synced 2024-10-22 17:05:48 +02:00
119 lines
3.7 KiB
JSON
119 lines
3.7 KiB
JSON
{
|
|
"name": "ss-webpack-boilerplate",
|
|
"version": "1.0.0",
|
|
"description": "Lets you create SilverStripe faster",
|
|
"author": "Tony Air <tony@twma.pro>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"engines": {
|
|
"yarn": ">= 1.0.0"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf build",
|
|
"start": "cross-env NODE_ENV=development webpack-dev-server --https -d --config webpack.config.js --mode development",
|
|
"build": "cross-env NODE_ENV=production webpack -p --config webpack.config.js --progress --mode production"
|
|
},
|
|
"dependencies": {
|
|
"cropperjs": "^1.5.1",
|
|
"croppie": "^2.6.4",
|
|
"exif-js": "^2.3.0",
|
|
"font-awesome": "^4.7.0",
|
|
"jquery": "^3.4.1",
|
|
"yarn": "^1.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^7.2.5",
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-loader": "^7.1.2",
|
|
"babel-plugin-transform-react-jsx": "^6.24.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-2": "^6.24.1",
|
|
"browser-sync": "^2.24.5",
|
|
"browser-sync-webpack-plugin": "^2.2.2",
|
|
"copy-webpack-plugin": "^4.6.0",
|
|
"copyfiles": "^1.2.0",
|
|
"cross-env": "^5.1.6",
|
|
"css-loader": "^0.28.9",
|
|
"eslint": "^4.18.1",
|
|
"eslint-plugin-import": "^2.17.2",
|
|
"eslint-plugin-jquery": "^1.5.0",
|
|
"eslint-plugin-react": "^7.13.0",
|
|
"exports-loader": "^0.7.0",
|
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
"favicons-webpack-plugin": "0.0.9",
|
|
"file-loader": "^1.1.5",
|
|
"html-webpack-plugin": "^4.0.0-beta.5",
|
|
"laravel-mix": "^2.1.11",
|
|
"lost": "^8.2.0",
|
|
"node-sass": "^4.9.0",
|
|
"object-assign": "^4.1.1",
|
|
"optimize-css-assets-webpack-plugin": "^4.0.1",
|
|
"postcss-loader": "^2.1.5",
|
|
"react": "^16.3.2",
|
|
"react-dom": "^16.3.2",
|
|
"react-hot-loader": "^3.1.3",
|
|
"redux": "^3.7.2",
|
|
"redux-devtools-extension": "^2.13.2",
|
|
"resolve-url-loader": "^2.2.1",
|
|
"rimraf": "^2.6.2",
|
|
"sass-lint": "^1.12.1",
|
|
"sass-lint-fix": "^1.12.1",
|
|
"sass-loader": "^6.0.6",
|
|
"script-ext-html-webpack-plugin": "^2.1.3",
|
|
"style-loader": "^0.19.0",
|
|
"svg-url-loader": "^2.3.1",
|
|
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony-v2.8.22",
|
|
"url-loader": "^0.6.2",
|
|
"webpack": "^4.32.2",
|
|
"webpack-cli": "^3.3.2",
|
|
"webpack-dev-server": "^3.4.1",
|
|
"webpack-manifest-plugin": "^1.3.2",
|
|
"webpack-merge": "^4.1.1"
|
|
},
|
|
"stylelint": {
|
|
"rules": {
|
|
"block-no-empty": null,
|
|
"color-no-invalid-hex": true,
|
|
"comment-empty-line-before": [
|
|
"always",
|
|
{
|
|
"ignore": [
|
|
"stylelint-commands",
|
|
"after-comment"
|
|
]
|
|
}
|
|
],
|
|
"declaration-colon-space-after": "always",
|
|
"indentation": [
|
|
4,
|
|
{
|
|
"except": [
|
|
"value"
|
|
]
|
|
}
|
|
],
|
|
"max-empty-lines": 2,
|
|
"rule-empty-line-before": [
|
|
"always",
|
|
{
|
|
"except": [
|
|
"first-nested"
|
|
],
|
|
"ignore": [
|
|
"after-comment"
|
|
]
|
|
}
|
|
],
|
|
"unit-whitelist": [
|
|
"em",
|
|
"rem",
|
|
"%",
|
|
"s",
|
|
"px"
|
|
]
|
|
}
|
|
}
|
|
}
|