This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
forked from avillegasn/wp-beb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.55 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
{
"name": "wp-beb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm install && npm run watch",
"dev": "npm run clean && cross-env NODE_ENV=development webpack",
"production": "cross-env NODE_ENV=production webpack",
"build": "npm run clean && npm run production",
"watch": "npm run clean && cross-env NODE_ENV=development webpack --watch",
"lint-php": "composer run-script phpcs",
"lint-php:fix": "composer run-script phpcbf",
"lint-css": "stylelint --syntax scss \"src/**/*.scss\"",
"lint-css:fix": "stylelint --fix --syntax scss \"src/**/*.scss\"",
"lint-js": "eslint assets/src/**/*.js packages/**/*.js",
"lint-js:fix": "eslint assets/src/**/*.js packages/**/*.js --fix",
"lint": "npm run lint-php && npm run lint-css && npm run lint-js",
"update:packages": "npm i -g npm-check-updates && npm-check-updates -u && npm install",
"postinstall": "composer install",
"clean": "rimraf ./assets/dist"
},
"author": "Nelio Software",
"license": "GPL-2.0-or-later",
"homepage": "https://neliosoftware.com/",
"repository": "https://github.com/avillegasn/wp-beb",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-react": "^7.13.0",
"expose-loader": "latest",
"file-loader": "^3.0.1",
"gist-embed": "^2.6.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.12.1",
"regenerator-runtime": "^0.13.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^10.0.1",
"stylelint-config-wordpress": "^14.0.0",
"svg-react-loader": "^0.4.6",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-rtl-plugin": "^2.0.0"
},
"dependencies": {
"npm": "^6.9.0",
"rimraf": "^2.6.3"
},
"engines": {
"node": "8.9.1",
"npm": "5.5.1"
}
}