-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
20 lines (20 loc) · 1002 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"runserver": "python manage.py runserver",
"all": "npm-run-all runserver watch"
},
"dependencies": {
"cross-env": "^5.2.0",
"frappe-gantt": "^0.2.0",
"laravel-mix": "^2.1.11",
"npm-run-all": "^4.1.3"
},
"devDependencies": {
"browser-sync": "^2.24.6",
"browser-sync-webpack-plugin": "2.0.1"
}
}