-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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": "conduit-backend",
"title": "Conduit Backend",
"description": "Backend for Conduit - Medium.com clone, built with Elysia + Drizzle",
"version": "0.0.0",
"module": "src/main.ts",
"type": "module",
"scripts": {
"start": "bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"build": "./bin/build.sh",
"preview": "./server",
"test:api": "cross-env APIURL=http://localhost:3000/api ./bin/api-tests/run-api-tests.sh",
"test:unit": "bun test",
"test": "bun run test:api && bun run test:unit",
"typecheck": "tsc --noEmit",
"clean": "rimraf node_modules server",
"fix": "biome check --write .",
"fix:unsafe": "biome check --write --unsafe .",
"check": "biome check",
"check:errors": "biome check --diagnostic-level=error",
"db": "docker compose up",
"db:start": "docker compose up -d",
"db:stop": "docker compose stop",
"db:restart": "docker compose restart",
"db:down": "docker compose down",
"db:remove": "docker compose down -v",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:seed": "bun drizzle/seed.ts",
"db:studio": "drizzle-kit studio",
"db:reset": "bun drizzle/reset.ts",
"db:config": "docker compose config",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"@elysiajs/bearer": "1.4.4",
"@elysiajs/jwt": "1.4.2",
"@elysiajs/openapi": "1.4.15",
"arkenv": "0.9.2",
"arkregex": "0.0.5",
"arktype": "2.2.0",
"chalk": "5.6.2",
"drizzle-orm": "0.45.1",
"elysia": "1.4.28",
"http-status-codes": "2.3.0",
"jose": "6.2.3",
"postgres": "3.4.9",
"radashi": "12.7.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/node": "25.6.0",
"all-contributors-cli": "6.26.1",
"bun-types": "1.3.13",
"cross-env": "7.0.3",
"drizzle-kit": "0.31.8",
"drizzle-seed": "0.3.1",
"pg": "8.20.0",
"rimraf": "6.1.3",
"typescript": "5.9.3"
},
"trustedDependencies": [
"@biomejs/biome"
],
"packageManager": "bun@1.3.2",
"engines": {
"bun": "^1.3.2"
}
}