-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.61 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
{
"name": "servebolt-optimizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider;yarn install && yarn run watch",
"dev": "export NODE_OPTIONS=--openssl-legacy-provider;yarn run clean && cross-env NODE_ENV=development webpack",
"production": "export NODE_OPTIONS=--openssl-legacy-provider; cross-env NODE_ENV=production webpack",
"build": "export NODE_OPTIONS=--openssl-legacy-provider; yarn run clean && yarn run production",
"watch": "export NODE_OPTIONS=--openssl-legacy-provider; yarn 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",
"lint-js:fix": "eslint assets/src/**/*.js --fix",
"lint": "export NODE_OPTIONS=--openssl-legacy-provider;yarn run lint-php && yarn run lint-css && yarn run lint-js",
"update:packages": "npm i -g npm-check-updates && npm-check-updates -u && npm install",
"clean": "rimraf ./assets/dist",
"test": "jest --testPathPattern=assets/src/js/tests/"
},
"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",
"eslint": "^5.16.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-react": "^7.13.0",
"expose-loader": "^3.0.0",
"file-loader": "^3.0.1",
"gist-embed": "^2.6.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^27.0.5",
"npm": "^6.9.0",
"progress-bar-webpack-plugin": "^1.12.1",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.3",
"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": {}
}