-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 KB
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
{
"name": "pulsate",
"version": "0.0.1",
"description": "Easy-to-change, faster, developer friendly next generation decentralized social media.",
"type": "module",
"main": "./build/main.js",
"license": "Apache-2.0",
"keywords": [],
"packageManager": "pnpm@10.33.0",
"author": {
"name": "pulsate-dev",
"email": "info@pulsate.dev"
},
"engines": {
"node": "24.14.1"
},
"scripts": {
"start": "node --env-file=.env --enable-source-maps ./build/main.js",
"build": "node ./scripts/build.js",
"build:api": "node ./build/scripts/apidoc.js",
"build:prisma": "prisma generate",
"clean": "rm -r ./build",
"format": "biome format --write .",
"lint": "biome lint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"check:type": "tsc -p .",
"check:filename": "ls-lint",
"check:format": "biome format .",
"prepare": "pnpm run build:prisma",
"postinstall": "lefthook install"
},
"dependencies": {
"@hono/node-server": "^1.19.13",
"@hono/swagger-ui": "^0.6.0",
"@hono/zod-openapi": "^1.0.0",
"@mikuroxina/mini-fn": "^7.0.0",
"@prisma/adapter-pg": "^7.0.1",
"@prisma/client": "7.7.0",
"@scalar/hono-api-reference": "^0.10.0",
"@upyo/core": "^0.4.0",
"@upyo/smtp": "^0.4.0",
"argon2": "^0.44.0",
"blurhash": "^2.0.5",
"file-type": "^22.0.0",
"hono": "^4.12.7",
"ioredis": "^5.4.1",
"jose": "^6.0.0",
"pg": "^8.16.3",
"prisma": "^7.0.0",
"sharp": "^0.34.0",
"tslog": "^4.9.3",
"yaml": "^2.8.3"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@ls-lint/ls-lint": "^2.2.3",
"@types/node": "^24.0.0",
"@types/pg": "^8.15.6",
"@vitest/coverage-v8": "^4.0.0",
"esbuild": "^0.28.0",
"glob": "^13.0.0",
"ignore": "^7.0.0",
"kleur": "^4.1.5",
"lefthook": "^2.0.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
}
}