Picsur/package.json
2022-06-17 10:48:56 +02:00

34 lines
880 B
JSON

{
"private": true,
"version": "0.3.0",
"workspaces": [
"shared",
"backend",
"frontend"
],
"scripts": {
"devdb:start": "podman-compose -f ./dev/docker-compose.yml up -d",
"devdb:stop": "podman-compose -f ./dev/docker-compose.yml down",
"build": "./support/build.sh",
"setversion": "./support/setversion.sh",
"purge": "rm -rf ./node_modules",
"purge-all": "./support/purge-all.sh"
},
"resolutions": {
"fastify": "^4.0.3",
"fastify-static": "npm:@fastify/static",
"fastify-formbody": "npm:@fastify/formbody",
"minimist": "npm:minimist-lite"
},
"dependencies": {
"fastify": "^4.0.3",
"fastify-formbody": "npm:@fastify/formbody",
"fastify-static": "npm:@fastify/static",
"minimist": "npm:minimist-lite"
},
"devDependencies": {
"prettier": "^2.7.1",
"prettier-plugin-sh": "^0.11.0"
}
}