-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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": "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@9.15.5",
"author": {
"name": "pulsate-dev",
"email": "info@pulsate.dev"
},
"engines": {
"node": "22.13.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 \"./**/*.{js,ts,md}\"",
"prepare": "pnpm run build:prisma",
"postinstall": "lefthook install"
},
"dependencies": {
"@hono/node-server": "^1.7.0",
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-openapi": "^0.18.0",
"@mikuroxina/mini-fn": "^6.3.1",
"@prisma/client": "6.3.0",
"@scalar/hono-api-reference": "^0.5.0",
"argon2": "^0.41.0",
"blurhash": "^2.0.5",
"file-type": "^20.0.0",
"hono": "^4.0.0",
"ioredis": "^5.4.1",
"jose": "^5.2.1",
"prisma": "^6.0.0",
"sharp": "^0.33.4",
"tslog": "^4.9.3",
"typescript": "^5.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@ls-lint/ls-lint": "^2.2.3",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"esbuild": "^0.24.0",
"glob": "^11.0.0",
"ignore": "^7.0.0",
"kleur": "^4.1.5",
"lefthook": "^1.6.1",
"vitest": "^3.0.0"
}
}