mirror of
https://github.com/pockethost/pockethost.git
synced 2025-05-28 01:36:41 +00:00
59 lines
1.8 KiB
JSON
59 lines
1.8 KiB
JSON
{
|
|
"name": "pockethost",
|
|
"version": "0.8.2",
|
|
"author": "Ben Allfree <ben@benallfree.com>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "prettier -c \"./**/*.ts\"",
|
|
"lint:fix": "prettier -w \"./**/*.ts\"",
|
|
"build": "concurrently 'yarn:build:*'",
|
|
"build:www": "cd packages/pockethost.io && yarn build",
|
|
"build:daemon": "cd packages/daemon && yarn build",
|
|
"dev": "NODE_ENV=development concurrently 'yarn:dev:*'",
|
|
"dev:proxy": "cd packages/proxy && yarn dev",
|
|
"dev:www": "cd packages/pockethost.io && yarn dev",
|
|
"dev:daemon": "cd packages/daemon && yarn dev",
|
|
"start": "concurrently 'yarn:start:*'",
|
|
"start:proxy": "cd packages/proxy && yarn start",
|
|
"start:www": "cd packages/pockethost.io && yarn start",
|
|
"start:daemon": "cd packages/daemon && yarn start",
|
|
"pm2": "concurrently 'yarn:pm2:*'",
|
|
"pm2:proxy": "cd packages/proxy && yarn pm2",
|
|
"pm2:www": "cd packages/pockethost.io && yarn pm2",
|
|
"pm2:daemon": "cd packages/daemon && yarn pm2",
|
|
"postinstall": "patch-package",
|
|
"prepare": "husky install"
|
|
},
|
|
"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": {
|
|
"chokidar-cli": "^3.0.0",
|
|
"concurrently": "^8.2.1",
|
|
"patch-package": "^8.0.0",
|
|
"prettier": "^3.0.3",
|
|
"prettier-plugin-organize-imports": "^3.2.3",
|
|
"prettier-plugin-svelte": "^3.0.3",
|
|
"tslib": "^2.6.2",
|
|
"tsx": "^3.12.8",
|
|
"typescript": "^5.0",
|
|
"husky": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"postinstall-postinstall": "^2.1.0",
|
|
"replace-in-file": "^7.0.1"
|
|
}
|
|
} |