mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-23 22:15:49 +00:00
70 lines
2.2 KiB
JSON
70 lines
2.2 KiB
JSON
{
|
|
"name": "pockethost",
|
|
"version": "0.9.3",
|
|
"author": "Ben Allfree <ben@benallfree.com>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"check:types": "concurrently 'yarn:check:types:*'",
|
|
"check:types:dashboard": "cd packages/dashboard && yarn check:types",
|
|
"check:types:common": "cd packages/common && yarn check:types",
|
|
"check:types:daemon": "cd packages/daemon && yarn check:types",
|
|
"lint": "prettier -c \"./**/*.{ts,js,cjs,svelte,json}\"",
|
|
"lint:fix": "prettier -w \"./**/*.{ts,js,cjs,svelte,json}\"",
|
|
"build": "concurrently 'yarn:build:*'",
|
|
"build:dashboard": "cd packages/dashboard && yarn build",
|
|
"build:daemon": "cd packages/daemon && yarn build",
|
|
"build:www": "cd packages/www && yarn build",
|
|
"dev": "concurrently 'yarn:dev:*'",
|
|
"dev:caddy": "source .env && caddy run",
|
|
"dev:www": "cd packages/www && yarn start",
|
|
"dev:dashboard": "cd packages/dashboard && yarn dev",
|
|
"dev:daemon": "cd packages/daemon && yarn dev",
|
|
"start": "concurrently 'yarn:start:*'",
|
|
"start:daemon": "cd packages/daemon && yarn start",
|
|
"pm2": "concurrently 'yarn:pm2:*'",
|
|
"pm2:daemon": "cd packages/daemon && yarn pm2",
|
|
"postinstall": "patch-package",
|
|
"prepare": "husky install",
|
|
"release:create": "hygen blog new"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"useTabs": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"plugins": [
|
|
"./node_modules/prettier-plugin-organize-imports/index.js",
|
|
"./node_modules/prettier-plugin-svelte/plugin.js"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"chalk": "^5.3.0",
|
|
"chokidar-cli": "^3.0.0",
|
|
"concurrently": "^8.2.1",
|
|
"husky": "^8.0.0",
|
|
"patch-package": "^8.0.0",
|
|
"postinstall-postinstall": "^2.1.0",
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-organize-imports": "^3.2.3",
|
|
"prettier-plugin-svelte": "^3.0.3",
|
|
"replace-in-file": "^7.0.1",
|
|
"rizzdown": "^0.0.6",
|
|
"tslib": "^2.6.2",
|
|
"tsx": "^3.12.8",
|
|
"type-fest": "^4.3.2",
|
|
"typescript": "^5.0"
|
|
},
|
|
"dependencies": {
|
|
"@s-libs/micro-dash": "^16.1.0",
|
|
"hygen": "^6.2.11",
|
|
"ora": "^7.0.1",
|
|
"pocketbase": "^0.18.0"
|
|
}
|
|
}
|