Files
SimpleStaticExpress/package.json

19 lines
669 B
JSON
Raw Permalink Normal View History

2022-06-11 23:23:22 +07:00
{
"name": "simplestaticexpress",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/YuzuZensai/SimpleStaticExpress.git",
2022-10-31 22:23:34 +07:00
"author": "Yuzu <yuzu@kirameki.cafe>",
2022-06-11 23:23:22 +07:00
"license": "GPL-3.0",
"dependencies": {
2022-06-11 23:30:48 +07:00
"dotenv": "^16.0.1",
"express": "^4.18.1",
"serve-index": "^1.9.1"
2022-06-11 23:45:12 +07:00
},
"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"
2022-06-11 23:23:22 +07:00
}
}