-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·24 lines (24 loc) · 1.09 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
{
"name": "wordpress-client-plugin-boilerplate",
"version": "0.1.0",
"description": "A WordPress Client Plugin Boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/Horttcore/WordPress-Client-Plugin-Boilerplate"
},
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"author": "Ralf Hortt",
"license": "GPLv2 or later",
"devDependencies": {
"@babel/preset-react": "^7.7.4",
"laravel-mix": "^5.0.0",
"resolve-url-loader": "^3.1.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0"
}
}