mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-09 01:16:50 +01:00
Add url from Machine for FW and add specific for ESP3DLib instead of ESP3D Move Verbose test to Machine code Fix GRBL server not working as expected by spliting code Remove Notification POC as not Machine compatible-> need to move notitification in Machine code
70 lines
2.5 KiB
JSON
70 lines
2.5 KiB
JSON
{
|
|
"name": "ESP3D-WebUI",
|
|
"version": "3.0.0",
|
|
"description": "Preact version of WebUI for ESP3D per @aganov suggestion",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build-grbl": "cross-env NODE_ENV=production TARGET_ENV=grbl webpack --mode=production",
|
|
"build-printer": "cross-env NODE_ENV=production TARGET_ENV=printer webpack --mode=production",
|
|
"build": "npm run build-printer & npm run build-grbl & npm run build-lang",
|
|
"clean": "rm -rf dist",
|
|
"grbl": "cross-env NODE_ENV=development TARGET_ENV=grbl webpack-dev-server --open --mode=development",
|
|
"printer": "cross-env NODE_ENV=development TARGET_ENV=printer webpack-dev-server --open --mode=development",
|
|
"server": "nodemon src/server/index.js",
|
|
"servergrbl": "nodemon src/server/indexgrbl.js",
|
|
"dev-grbl": "concurrently \"npm run servergrbl\" \"npm run grbl\"",
|
|
"dev-printer": "concurrently \"npm run server\" \"npm run printer\"",
|
|
"dev": "concurrently \"npm run server\" \"npm run printer\"",
|
|
"build-lang": "node ./src/languages/build.js"
|
|
},
|
|
"keywords": [],
|
|
"type": "git",
|
|
"repository": "https://github.com/luc-github/ESP3D-WEBUI",
|
|
"author": "",
|
|
"license": "(ISC OR GPL-3.0)",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/preset-env": "^7.8.6",
|
|
"@babel/preset-react": "^7.8.3",
|
|
"@babel/register": "^7.8.6",
|
|
"babel-loader": "^8.0.6",
|
|
"compression-webpack-plugin": "^3.1.0",
|
|
"concurrently": "^5.1.0",
|
|
"cross-env": "^5.2.1",
|
|
"css-loader": "^3.4.2",
|
|
"express": "^4.17.1",
|
|
"express-fileupload": "1.1.7-alpha.3",
|
|
"express-ws": "^4.0.0",
|
|
"gzipper": "^3.7.0",
|
|
"html-minifier-webpack-plugin": "^2.2.3",
|
|
"html-webpack-inline-source-plugin": "0.0.10",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"mini-css-extract-plugin": "^0.7.0",
|
|
"node-sass": "^4.14.1",
|
|
"nodemon": "^2.0.3",
|
|
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
|
"postcss-flexbugs-fixes": "^4.2.0",
|
|
"postcss-import": "^12.0.1",
|
|
"postcss-loader": "^3.0.0",
|
|
"postcss-preset-env": "^6.7.0",
|
|
"postcss-safe-parser": "^4.0.2",
|
|
"remove-files-webpack-plugin": "^1.4.0",
|
|
"sass-loader": "^7.3.1",
|
|
"style-loader": "^0.23.1",
|
|
"terser-webpack-plugin": "^1.4.3",
|
|
"webpack": "^4.42.0",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.11.0",
|
|
"webpack-merge": "^4.2.2",
|
|
"webpack-modules": "^1.0.0"
|
|
},
|
|
"dependencies": {
|
|
"bootstrap": "^4.4.1",
|
|
"history": "^4.10.1",
|
|
"preact": "^10.4.0",
|
|
"preact-feather": "4.1.0",
|
|
"preact-router": "^3.2.1",
|
|
"storeon": "^2.0.2"
|
|
}
|
|
}
|