forked from abner/for-legacy-web
Right now the generated docker container contains a copy of the development environment used to compile the revite interface. This PR loses about 440MB compressed, or around 800MB uncompressed from the final image size. node in the final image has been bumped from 16 to 24, sirv-cli, and the dependencies for inject.js have been updated
17 lines
333 B
JSON
17 lines
333 B
JSON
{
|
|
"name": "inject-and-sirv",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"start:inject": "node scripts/inject.js && sirv dist_injected --port 5000 --cors --single --host"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"fs-extra": "^11.3.0",
|
|
"klaw": "^4.1.0",
|
|
"sirv-cli": "^3.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|