-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.28 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
{
"name": "theme-boilerplate",
"version": "1.0.0",
"description": "Custom WordPress theme",
"dependencies": {
"flatpickr": "^3.1.5",
"flowtype": "^2.0.0",
"include-media": "^1.4.9",
"js-cookie": "^2.2.0",
"normalize.css": "^8.0.0",
"select2": "^4.0.5"
},
"devDependencies": {
"browser-sync": "^2.23.6",
"browser-sync-webpack-plugin": "^1.2.0",
"css-loader": "^0.26.4",
"laravel-mix": "^2.1.0",
"style-loader": "^0.13.2",
"webpack": "^3.11.0",
"webpack-livereload-plugin": "^1.2.0"
},
"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": "Paper Tower",
"license": "ISC"
}