mirror of
https://github.com/YuzuZensai/SimpleStaticExpress.git
synced 2026-01-06 04:33:28 +00:00
19 lines
669 B
JSON
19 lines
669 B
JSON
{
|
|
"name": "simplestaticexpress",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/YuzuZensai/SimpleStaticExpress.git",
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
|
"license": "GPL-3.0",
|
|
"dependencies": {
|
|
"dotenv": "^16.0.1",
|
|
"express": "^4.18.1",
|
|
"serve-index": "^1.9.1"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"docker-build": "docker build . -t ghcr.io/yuzuzensai/simplestaticexpress:latest",
|
|
"docker-run": "docker run -d --name SimpleStaticExpress --mount type=bind,source=\"$(pwd)\"/public,target=/home/node/app/public --network host --env-file .env ghcr.io/yuzuzensai/simplestaticexpress:latest"
|
|
}
|
|
}
|