mirror of
https://github.com/luc-github/ESP3D.git
synced 2026-03-08 00:46:48 +01:00
Add WebSocket Subprotocol support per @terjeio suggestion Change ESP800 report to use FlashFileSystem instead of FileSystem per @terjeio suggestion for consistency Add Host Path support for files hosted in subdirectory (WIP) Add createPath flag for upload to create full path if does not exists Update embedded page to support new ESP800 flags Update WebSocket library to avoid warning Update Features.md Bump platformIO to 5.1.0 Bumb version to 204
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "base",
|
|
"version": "1.0.0",
|
|
"description": "base for webpack project",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"front": "webpack serve --config config/webpack.dev.js ",
|
|
"pack": "webpack --config config/webpack.prod.js",
|
|
"convert-assets": "node ./config/buildassets.js",
|
|
"convert-page": "node ./config/buildheader.js",
|
|
"server": "nodemon config/server.js",
|
|
"dev": "concurrently \"npm run server\" \"npm run front\"",
|
|
"build": "npm run pack && npm run convert-page && npm run convert-assets"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.7",
|
|
"@babel/preset-env": "^7.16.7",
|
|
"babel-loader": "^8.2.3",
|
|
"chalk": "^4.1.2",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"compression-webpack-plugin": "^7.1.2",
|
|
"concurrently": "^7.0.0",
|
|
"core-js": "^3.20.2",
|
|
"css-loader": "^5.2.7",
|
|
"espress": "0.0.0",
|
|
"express": "^4.17.2",
|
|
"express-fileupload": "^1.2.1",
|
|
"express-ws": "^4.0.0",
|
|
"html-inline-css-webpack-plugin": "^1.11.1",
|
|
"html-inline-script-webpack-plugin": "^1.1.6",
|
|
"html-minimizer-webpack-plugin": "^2.1.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"mini-css-extract-plugin": "^1.6.2",
|
|
"nodemon": "^2.0.15",
|
|
"regenerator-runtime": "^0.13.9",
|
|
"style-loader": "^2.0.0",
|
|
"webpack": "^5.65.0",
|
|
"webpack-cli": "^4.9.1",
|
|
"webpack-dev-server": "^4.7.4"
|
|
}
|
|
}
|