-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
{
"name": "@papra/papra-app-server",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "Papra app server",
"author": "Corentin Thomasset <[email protected]> (https://corentin.tech)",
"license": "AGPL-3.0-or-later",
"keywords": [],
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts | crowlog-pretty",
"build": "pnpm esbuild --bundle src/index.ts --platform=node --packages=external --format=esm --outfile=dist/index.js --minify",
"start": "node dist/index.js",
"start:with-migrations": "pnpm migrate:up && pnpm start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"migrate:up": "tsx --env-file-if-exists=.env src/scripts/migrate-up.script.ts | crowlog-pretty",
"migrate:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"clean:dist": "rm -rf dist",
"clean:db": "rm db.sqlite",
"clean:storage": "rm -rf local-documents",
"clean:all": "pnpm clean:db && pnpm clean:storage",
"dev:reset": "pnpm clean:all && pnpm migrate:push",
"script:send-intake-email": "tsx --env-file-if-exists=.env src/scripts/send-intake-email.script.ts | crowlog-pretty"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@aws-sdk/lib-storage": "^3.722.0",
"@corentinth/chisels": "^1.1.0",
"@corentinth/friendly-ids": "^0.0.1",
"@crowlog/async-context-plugin": "^1.0.0",
"@crowlog/logger": "^1.1.0",
"@hono/node-server": "^1.13.7",
"@hono/oauth-providers": "^0.6.2",
"@libsql/client": "^0.14.0",
"@owlrelay/api-sdk": "^0.0.1",
"@owlrelay/webhook": "^0.0.2",
"@papra/lecture": "^0.0.4",
"@paralleldrive/cuid2": "^2.2.2",
"better-auth": "^1.1.11",
"date-fns": "^4.1.0",
"drizzle-kit": "^0.30.1",
"drizzle-orm": "^0.38.3",
"figue": "^2.2.0",
"hono": "^4.6.15",
"lodash-es": "^4.17.21",
"node-cron": "^3.0.3",
"resend": "^4.1.2",
"tsx": "^4.19.2",
"unpdf": "^0.12.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@crowlog/pretty": "^1.1.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@vitest/coverage-v8": "catalog:",
"esbuild": "^0.24.2",
"eslint": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}