Files
Picsur/package.json

34 lines
880 B
JSON
Raw Normal View History

2022-02-24 22:56:27 +01:00
{
"private": true,
2022-03-31 23:00:48 +02:00
"version": "0.3.0",
2022-02-24 22:56:27 +01:00
"workspaces": [
"shared",
"backend",
"frontend"
2022-02-25 16:41:56 +01: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 19:43:31 +01:00
"build": "./support/build.sh",
2022-05-02 12:11:25 +02:00
"setversion": "./support/setversion.sh",
"purge": "rm -rf ./node_modules",
"purge-all": "./support/purge-all.sh"
2022-03-21 19:54:09 +01:00
},
"resolutions": {
2022-06-09 16:42:13 +02:00
"fastify": "^4.0.0",
2022-06-05 12:16:31 +02:00
"fastify-static": "npm:@fastify/static",
2022-06-09 16:42:13 +02:00
"fastify-formbody": "npm:@fastify/formbody",
2022-06-05 12:16:31 +02:00
"minimist": "npm:minimist-lite"
2022-03-23 11:17:41 +01:00
},
"dependencies": {
2022-06-09 16:42:13 +02:00
"fastify": "^4.0.0",
"fastify-formbody": "npm:@fastify/formbody",
2022-05-01 23:29:56 +02:00
"fastify-static": "npm:@fastify/static",
2022-03-23 11:17:41 +01:00
"minimist": "npm:minimist-lite"
2022-06-05 12:16:31 +02:00
},
"devDependencies": {
"prettier": "^2.6.2",
"prettier-plugin-sh": "^0.11.0"
2022-02-25 16:41:56 +01:00
}
2022-02-24 22:56:27 +01:00
}