forked from pockethost/pockethost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 4.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "pockethost",
"version": "0.9.3",
"author": "Ben Allfree <[email protected]>",
"license": "MIT",
"scripts": {
"check:types": "concurrently 'pnpm:check:types:*'",
"check:types:dashboard": "cd frontends/dashboard && pnpm check:types",
"check:types:pockethost": "tsc --noEmit --skipLibCheck",
"lint": "prettier -c \"./**/*.{ts,js,cjs,svelte,json}\"",
"lint:fix": "prettier -w \"./**/*.{ts,js,cjs,svelte,json}\"",
"download-versions": "tsx ./src/cli/download.ts",
"build": "concurrently 'pnpm:build:*'",
"build-frontends": "concurrently 'pnpm:build:frontend:*'",
"build:frontend:dashboard": "cd frontends/dashboard && pnpm build",
"build:docker": "cd src/services/PocketBaseService && docker build . -t pockethost-instance",
"build:frontend:lander": "cd frontends/lander && pnpm build",
"build:frontend:superadmin": "cd frontends/superadmin && pnpm build",
"dev": "NODE_ENV=development concurrently 'pnpm:dev:*'",
"dev-daemon": "concurrently 'pnpm:dev:daemon:*'",
"dev:proxy": " dotenv tsx watch ./src/cli/proxy/server.ts",
"dev:lander": "cd frontends/lander && pnpm start",
"dev:dashboard": "cd frontends/dashboard && pnpm dev",
"dev:superadmin": "cd frontends/superadmin && pnpm dev",
"dev:edge:daemon": "tsx watch src/cli/edge-daemon.ts",
"dev:edge:ftp": "tsx watch src/cli/edge-ftp.ts",
"dev:edge:syslogd": "tsx watch src/cli/edge-syslogd.ts",
"dev:downloader": "pnpm download-versions",
"dev:mothership:maildev": "npx -y maildev",
"dev:mothership:pocketbase": "nodemon --signal SIGTERM --watch src --exec tsx ./src/cli/mothership.ts",
"prod:proxy": "dotenv tsx ./src/cli/proxy/server.ts",
"prod:edge:daemon": "tsx src/cli/edge-daemon.ts",
"prod:edge:ftp": "tsx src/cli/edge-ftp.ts",
"prod:edge:syslog": "tsx src/cli/edge-syslogd.ts",
"prod:mothership": "tsx src/cli/mothership.ts",
"plop": "plop",
"nofile": "cat /proc/sys/fs/file-nr",
"mail": "tsx ./src/cli/sendmail.ts",
"pocketbase": ". ./.env && $PH_HOME/host/pocketbase --dir $PH_HOME/data/pockethost-central/pb_data --migrationsDir ./src/mothership-app/migrations"
},
"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",
"./node_modules/prettier-plugin-jsdoc/dist/index.js"
]
},
"type": "module",
"dependencies": {
"@s-libs/micro-dash": "^16.1.0",
"@types/winston-syslog": "^2.4.3",
"ajv": "^8.12.0",
"boolean": "^3.2.0",
"bottleneck": "^2.19.5",
"commander": "^11.1.0",
"date-fns": "^2.30.0",
"decompress": "^4.2.1",
"decompress-unzip": "https://github.com/pockethost/decompress-unzip.git#6ef397b9a2df11d39c7b26ce779e123833844751",
"dockerode": "^3.3.5",
"dotenv": "^16.3.1",
"event-source-polyfill": "^1.0.31",
"eventsource": "^2.0.2",
"exit-hook": "^4.0.0",
"express-async-errors": "^3.1.1",
"find-up": "^6.3.0",
"ftp-srv": "github:pockethost/ftp-srv#0fc708bae0d5d7a55ce948767f082d6fcfb2af59",
"get-port": "^6.1.2",
"glob": "^10.3.10",
"http-proxy": "^1.18.1",
"json-stringify-safe": "^5.0.1",
"knex": "^2.5.1",
"memorystream": "^0.3.1",
"nanoid": "^5.0.2",
"node-fetch": "^3.3.2",
"ora": "^7.0.1",
"pocketbase": "^0.20.1",
"semver": "^7.5.4",
"sqlite3": "^5.1.6",
"syslog-parse": "^2.0.0",
"tail": "^2.2.6",
"tmp": "^0.2.1",
"url-pattern": "^1.0.3",
"winston": "^3.11.0",
"winston-syslog": "^2.7.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.95",
"@types/bootstrap": "^5.2.8",
"@types/cors": "^2.8.17",
"@types/d3-scale": "^4.0.6",
"@types/d3-scale-chromatic": "^3.0.1",
"@types/decompress": "^4.2.6",
"@types/dockerode": "^3.3.21",
"@types/eventsource": "^1.1.14",
"@types/express": "^4.17.21",
"@types/http-proxy": "^1.17.13",
"@types/js-cookie": "^3.0.5",
"@types/json-stringify-safe": "^5.0.2",
"@types/marked": "^4.3.2",
"@types/memorystream": "^0.3.3",
"@types/node": "^20.8.10",
"@types/semver": "^7.5.4",
"@types/tail": "^2.2.2",
"@types/tmp": "^0.2.5",
"@types/unzipper": "^0.10.8",
"@types/vhost": "^3.0.9",
"chalk": "^5.3.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"dotenv-cli": "^7.3.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"ip-cidr": "^3.1.0",
"js-yaml": "^4.1.0",
"plop": "^4.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-svelte": "^3.0.3",
"rizzdown": "^0.0.6",
"svelte": "^4.2.2",
"tslib": "^2.6.2",
"tsx": "^3.14.0",
"type-fest": "^4.6.0",
"typescript": "^5.2.2",
"vhost": "^3.0.2"
},
"packageManager": "[email protected]"
}