mirror of
https://github.com/pockethost/pockethost.git
synced 2025-09-13 12:10:16 +00:00
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "pockethost",
|
|
"version": "0.5.3",
|
|
"author": "Ben Allfree <ben@benallfree.com>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "prettier -c \"./**/*.ts\"",
|
|
"lint:fix": "prettier -w \"./**/*.ts\"",
|
|
"build": "concurrently 'yarn build:pocketbase' 'yarn build:daemon' 'yarn build:www'",
|
|
"build:pocketbase": "cd packages/pocketbase && yarn build",
|
|
"build:daemon": "cd packages/daemon && yarn build",
|
|
"build:www": "cd packages/pockethost.io && yarn build",
|
|
"dev:www": "cd packages/pockethost.io && yarn dev",
|
|
"dev:daemon": "cd packages/daemon && yarn dev",
|
|
"start": "concurrently 'yarn start:www' 'yarn start:daemon'",
|
|
"start:www": "cd packages/pockethost.io && yarn start",
|
|
"start:daemon": "cd packages/daemon && yarn start",
|
|
"migrate": "yarn migrate:daemon",
|
|
"migrate:daemon": "cd packages/daemon && yarn migrate",
|
|
"postinstall": "patch-package"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"useTabs": false,
|
|
"singleQuote": true,
|
|
"plugins": [
|
|
"./node_modules/prettier-plugin-organize-imports",
|
|
"./node_modules/prettier-plugin-svelte"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^7.4.0",
|
|
"patch-package": "^6.5.0",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-organize-imports": "^3.1.1",
|
|
"prettier-plugin-svelte": "^2.7.0",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"dependencies": {
|
|
"postinstall-postinstall": "^2.1.0"
|
|
}
|
|
}
|