-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.46 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
{
"name": "wp-optigration",
"version": "0.1.0",
"main": "index.js",
"repository": "git@github.com:lubusin/wp-optigration.git",
"author": "Ajit Bohra <ajit@lubus.in>",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.6"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@tailwindcss/custom-forms": "^0.2.1",
"@wordpress/eslint-plugin": "^3.0.0",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "2.0.1",
"cross-env": "^5.2.0",
"eslint": "^6.3.0",
"laravel-mix": "^4.0.16",
"laravel-mix-purgecss": "^4.1.0",
"live-server": "^1.2.1",
"mix-tailwindcss": "^1.1.0",
"tailwindcss": "^1.1.2"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
]
},
"scripts": {
"serve": "live-server . --host=localhost --port=8080",
"dev": "yarn run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn run development --watch",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "yarn run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
}
}