mirror of
https://github.com/pockethost/pockethost.git
synced 2026-02-26 13:06:54 +00:00
36 lines
1004 B
JSON
36 lines
1004 B
JSON
{
|
|
"name": "pockethost",
|
|
"version": "0.2.0",
|
|
"author": "Ben Allfree <ben@benallfree.com>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"prettier:check": "prettier -c \"./**/*.ts\"",
|
|
"prettier: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"
|
|
},
|
|
"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",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-organize-imports": "^3.1.1",
|
|
"prettier-plugin-svelte": "^2.7.0",
|
|
"typescript": "^4.8.3"
|
|
}
|
|
} |