-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
75
76
77
78
79
80
81
{
"name": "simple-cache",
"description": "Simple Cache WordPress plugin.",
"homepage": "https://taylorlovett.com",
"repository": {
"type": "git",
"url": "https://github.com/tlovett1/simple-cache"
},
"author": {
"name": "Taylor Lovett",
"email": "[email protected]",
"url": "https://taylorlovett.com",
"role": "developer"
},
"scripts": {
"start": "composer install --ignore-platform-reqs && npm install && npm run build",
"build": "NODE_ENV=production webpack --config config/webpack.config.prod.js",
"dev": "NODE_ENV=development webpack --config config/webpack.config.dev.js",
"watch": "NODE_ENV=development webpack --watch --config config/webpack.config.dev.js",
"build-release": "npm install && composer install --no-dev -o && npm run build",
"lint-release": "npm install && composer install && npm run lint",
"lint-css": "stylelint assets/css",
"lint-js": "eslint assets/js",
"lint-php": "composer run lint",
"format-js": "eslint --fix assets/js",
"lint": "npm run lint-css && npm run lint-js && npm run lint-php",
"format": "npm run format-js"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.php": [
"./vendor/bin/phpcs --extensions=php --warning-severity=8 -s"
]
},
"license": "MIT",
"devDependencies": {
"@10up/babel-preset-default": "^1.0.0",
"@10up/eslint-config": "^2.0.0",
"@babel/core": "^7.9.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browserslist": "^4.8.2",
"caniuse-db": "^1.0.30001016",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.0",
"css-loader": "^3.4.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"imagemin-webpack-plugin": "^2.4.2",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-editor-styles": "^0.3.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.4",
"terser": "^4.4.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-fix-style-only-entries": "^0.4.0",
"webpack-merge": "^4.2.2",
"webpackbar": "^4.0.0",
"@wordpress/eslint-plugin": "^6.0.0"
},
"engines": {
"node": ">=8.11"
}
}