-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.06 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
{
"name": "@tinypixelco/disable-welcome-modal",
"description": "Disables the WP editor's welcome modal",
"homepage": "https://github.com/pixelcollective/disable-welcome-modal",
"licenses": [{"type": "MIT", "url": "http://opensource.org/licenses/MIT"}],
"authors": [{"name": "Kelly Mears", "email": "[email protected]"}],
"version": "1.0.0",
"private": false,
"files": ["src/disable-welcome-modal.js"],
"main": "src/disable-welcome-modal.js",
"scripts": {
"generate": "bud generate",
"dev": "cross-env NODE_ENV=hmr webpack-dev-server --colors --watch --https --config webpack.config.js",
"build": "cross-env NODE_ENV=development webpack --progress --colors --inline -p --config webpack.config.js",
"build:production": "cross-env NODE_ENV=production webpack --progress --colors --inline -p --config webpack.config.js",
"lint": "eslint ./src/**/*.js",
"format": "prettier --write ."
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@roots/bud": "roots/bud#master",
"@wordpress/dependency-extraction-webpack-plugin": "^2.6.0",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpackbar": "^4.0.0",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {}
}