-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
executable file
·38 lines (38 loc) · 1.26 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
{
"name": "gumponents",
"description": "Essential Gutenberg components for WordPress.",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production --env=production",
"dev": "webpack --config ./webpack.config.js --mode production --env=development --watch",
"lint": "npm run lint-js && npm run lint-css && composer run lint",
"lint-js": "eslint assets/src",
"lint-css": "stylelint assets/src"
},
"author": "Junaid Bhura",
"license": "MIT",
"devDependencies": {
"@wordpress/eslint-plugin": "^4.1.0",
"eslint": "^6.8.0",
"stylelint": "^10.1.0",
"stylelint-config-wordpress": "^14.0.0"
},
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@wordpress/browserslist-config": "^4.1.2",
"babel-loader": "^8.2.5",
"classnames": "^2.3.1",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.1",
"react-beautiful-dnd": "^13.0.0",
"react-select": "^5.8.0",
"sass": "^1.54.2",
"sass-loader": "^13.0.2",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-notifier": "^1.15.0"
}
}