forked from pockethost/pockethost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pockethost",
"version": "0.9.1",
"author": "Ben Allfree <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "prettier -c \"./**/*.{ts,js,cjs,svelte}\"",
"lint:fix": "prettier -w \"./**/*.{ts,js,cjs,svelte}\"",
"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": "NODE_ENV=development concurrently '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"
},
"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": "^4.1.2",
"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",
"tslib": "^2.6.2",
"tsx": "^3.12.8",
"type-fest": "^4.3.2",
"typescript": "^5.0"
},
"dependencies": {
"@s-libs/micro-dash": "^15.1.0",
"pocketbase": "^0.18.0"
}
}