Picsur/package.json

26 lines
642 B
JSON
Raw Normal View History

2022-02-24 21:56:27 +00:00
{
"private": true,
2022-03-31 21:00:48 +00:00
"version": "0.3.0",
2022-02-24 21:56:27 +00:00
"workspaces": [
"shared",
"backend",
"frontend"
2022-02-25 15:41:56 +00:00
],
"scripts": {
"devdb:start": "podman-compose -f ./dev/docker-compose.yml up -d",
"devdb:stop": "podman-compose -f ./dev/docker-compose.yml down",
2022-03-21 18:43:31 +00:00
"build": "./support/build.sh",
2022-05-02 10:11:25 +00:00
"setversion": "./support/setversion.sh",
"purge": "rm -rf ./node_modules",
"purge-all": "./support/purge-all.sh"
2022-03-21 18:54:09 +00:00
},
"resolutions": {
2022-05-01 21:29:56 +00:00
"minimist": "npm:minimist-lite",
"fastify-static": "npm:@fastify/static"
2022-03-23 10:17:41 +00:00
},
"dependencies": {
2022-05-01 21:29:56 +00:00
"fastify-static": "npm:@fastify/static",
2022-03-23 10:17:41 +00:00
"minimist": "npm:minimist-lite"
2022-02-25 15:41:56 +00:00
}
2022-02-24 21:56:27 +00:00
}