workaround to accept "moderate" problem for axios, as it is used only for local communication
Massimo Melina committed
Nov 26, 2023 at 00:49 UTC
bfb2186a731baeda424c60023e59dcd1fd504288
1 file changed
+1
-1
package.json
+1
-1
@@ -15,7 +15,7 @@
15
"watch-server-proxied": "cross-env FRONTEND_PROXY=3005 ADMIN_PROXY=3006 npm run watch-server",
16
"start-frontend": "npm run start --workspace=frontend",
17
"start-admin": "npm run start --workspace=admin",
18
- "build-all": "npm audit --omit=dev && rm -rf dist && npm i && npm run build-server && npm run build-frontend && npm run build-admin && echo COMPLETED",
18
+ "build-all": "npm audit --omit=dev --audit-level=high && rm -rf dist && npm i && npm run build-server && npm run build-frontend && npm run build-admin && echo COMPLETED",
19
"build-server": "rm -rf dist/src dist/plugins && tsc --target es2018 && touch package.json && cp -v -r package.json central.json README* LICENSE* plugins dist && find dist -name .DS_Store -delete && node afterbuild.js",
20
"build-frontend": "npm run build --workspace=frontend",
21
"build-admin": "npm run build --workspace=admin",