-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.87 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
{
"name": "todo-api",
"version": "0.0.1",
"scripts": {
"dev": "tsx --watch src/main.ts",
"build": "tsc",
"test": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:seed": "tsx src/dev/seed.ts",
"db:migrate": "drizzle-kit migrate",
"dev:docker": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d",
"dev:docker:down": "docker compose -f docker-compose.yml -f docker-compose.dev.yml down"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321",
"dependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/rate-limit": "^10.2.1",
"@fastify/secure-session": "^8.1.0",
"@fastify/static": "^8.0.3",
"@fastify/swagger-ui": "^5.2.0",
"argon2": "^0.41.1",
"drizzle-orm": "^0.38.3",
"drizzle-zod": "^0.6.1",
"env-schema": "^6.0.0",
"fastify": "^5.2.0",
"fastify-type-provider-zod": "^4.0.2",
"http-status-codes": "^2.3.0",
"pg-error-enum": "^0.7.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"postgres": "^3.4.5",
"prom-client": "^15.1.3",
"slugify": "^1.6.6",
"zennv": "^0.1.1",
"zod": "^3.24.1",
"zod-openapi": "^4.2.2"
},
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@fastify/swagger": "^9.4.0",
"@testcontainers/postgresql": "^10.16.0",
"@types/node": "^22.10.2",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"json-schema-to-ts": "^3.1.1",
"testcontainers": "^10.16.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.1.8"
}
}