Picsur/package.json

45 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2022-02-24 21:56:27 +00:00
{
"private": true,
2023-06-15 11:28:28 +00:00
"version": "0.5.2",
2022-02-24 21:56:27 +00:00
"workspaces": [
"shared",
"backend",
"frontend"
2022-02-25 15:41:56 +00:00
],
"scripts": {
2022-08-26 10:38:05 +00:00
"devdb:start": "docker-compose -f ./support/dev.docker-compose.yml up -d",
"devdb:stop": "docker-compose -f ./support/dev.docker-compose.yml down",
"devdb:restart": "docker-compose -f ./support/dev.docker-compose.yml restart",
2023-06-02 14:35:31 +00:00
"devdb:remove": "docker-compose -f ./support/dev.docker-compose.yml down --volumes --remove-orphans",
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",
2022-09-06 14:32:16 +00:00
"purge-all": "./support/purge-all.sh",
"format": "prettier --write .",
"lint": "eslint --fix ."
2022-03-21 18:54:09 +00:00
},
"resolutions": {
2022-10-11 17:47:02 +00:00
"fastify": ">=4.8.1",
2022-09-06 14:32:16 +00:00
"terser": ">=5.14.2",
"typeorm": ">=0.3.9",
2022-12-28 13:38:05 +00:00
"jsonwebtoken": ">=9.0.0",
2023-03-15 13:17:43 +00:00
"typescript": "~4.9.5",
"webpack": ">=5.76.0",
2022-08-26 10:38:05 +00:00
"fastify-static": "npm:@fastify/static@*",
"fastify-formbody": "npm:@fastify/formbody@*",
"minimist": "npm:minimist-lite@*"
2022-06-05 10:16:31 +00:00
},
"devDependencies": {
2023-06-15 11:27:30 +00:00
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
2023-06-15 11:27:30 +00:00
"ms": "3.0.0-canary.1",
2023-06-02 14:35:31 +00:00
"prettier": "^2.8.8",
2022-08-26 10:38:05 +00:00
"prettier-plugin-sh": "^0.12.8"
},
"packageManager": "yarn@3.2.2"
2022-02-24 21:56:27 +00:00
}