-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
63 lines (63 loc) · 2.07 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
{
"name": "@enclosed/app-server",
"type": "module",
"version": "1.14.0",
"packageManager": "[email protected]",
"description": "Enclosed backend server",
"author": "Corentin Thomasset <[email protected]> (https://corentin.tech)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/enclosed"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "$npm_execpath run dev:node",
"build": "$npm_execpath run build:cloudflare",
"dev:node": "tsx -r dotenv/config --watch src/index.node.ts | pino-pretty",
"dev:cloudflare": "wrangler dev --test-scheduled --port=8787 src/index.cloudflare.ts",
"build:cloudflare": "esbuild --bundle src/index.cloudflare.ts --format=esm --outfile=dist-cloudflare/_worker.js --minify",
"build:node": "esbuild --bundle src/index.node.ts --platform=node --format=cjs --outfile=dist-node/index.cjs --minify",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"script:generate-config-table": "tsx -r dotenv/config src/scripts/generate-config-table.script.ts"
},
"dependencies": {
"@corentinth/chisels": "^1.0.4",
"@enclosed/lib": "workspace:*",
"@hono/node-server": "^1.12.1",
"bcryptjs": "^2.4.3",
"date-fns": "^4.0.0",
"figue": "^2.1.0",
"hono": "^4.5.8",
"lodash-es": "^4.17.21",
"node-cron": "^3.0.3",
"pino": "^9.3.2",
"ulid-workers": "^2.1.0",
"unstorage": "^1.10.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@cloudflare/workers-types": "^4.20240821.1",
"@total-typescript/ts-reset": "^0.6.0",
"@types/bcryptjs": "^2.4.6",
"@types/lodash-es": "^4.17.12",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "^2.0.5",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"eslint": "catalog:",
"pino-pretty": "^11.2.2",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"wrangler": "^3.72.1",
"zx": "^8.1.4"
}
}