quickshare/package.json
2021-09-18 16:21:52 +08:00

17 lines
703 B
JSON

{
"private": true,
"workspaces": [
"src/client/web"
],
"scripts": {
"build:fe": "yarn && bash scripts/copy_js.sh && webpack --config src/client/web/webpack.app.prod.js",
"build:fe:dev": "yarn && bash scripts/copy_js_dev.sh && webpack --config src/client/web/webpack.app.dev.js --watch",
"build:fe:watch": "yarn && bash scripts/copy_js.sh && webpack --config src/client/web/webpack.app.prod.js --watch",
"start": "yarn build:fe && go run cmd/start/main.go -c `pwd`/configs/dev.yml",
"build": "yarn build:fe && bash scripts/build_be.sh",
"build:docker": "docker build . -t hexxa/quickshare:latest"
},
"dependencies": {
"webpack-bundle-analyzer": "^4.4.2"
}
}