-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.44 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tdn-api",
"version": "0.0.1",
"description": "TDN API",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:unit:watch": "vitest --config vitest.unit.config.ts",
"test:unit:coverage": "vitest run --config vitest.unit.config.ts --coverage",
"test:integration": "cross-env NODE_ENV=test vitest run --config vitest.integration.config.ts",
"test:e2e": "cross-env NODE_ENV=test vitest run --config vitest.e2e.config.ts",
"test:coverage": "vitest run --config vitest.unit.config.ts --coverage",
"migrate-bots": "cross-env DOTENV_CONFIG_PATH=.env.production tsx scripts/migrate-bots.ts",
"assign-bot-categories": "tsx scripts/assign-bot-categories.ts",
"backfill-post-lang": "tsx scripts/backfill-post-lang.ts",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"keywords": [
"tdn-api",
"tdn",
"fastify",
"api"
],
"author": "İrfan Sönmezışıklı",
"license": "SEE LICENSE IN LICENSE",
"prisma": {
"schema": "prisma"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"packageManager": "pnpm@11.5.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.1120.0",
"@fastify/awilix": "^8.2.1",
"@fastify/cookie": "^11.1.2",
"@fastify/cors": "^11.3.0",
"@fastify/env": "^7.0.0",
"@fastify/helmet": "^13.1.1",
"@fastify/jwt": "^10.2.2",
"@fastify/multipart": "^10.1.1",
"@fastify/rate-limit": "^11.2.0",
"@fastify/swagger": "^9.8.1",
"@fastify/swagger-ui": "^6.1.1",
"@fastify/type-provider-typebox": "^6.1.0",
"@fastify/websocket": "^11.3.0",
"@prisma/adapter-pg": "^7.10.0",
"@prisma/client": "^7.10.0",
"@sinclair/typebox": "^0.34.52",
"argon2": "^0.45.1",
"awilix": "^13.0.5",
"axios": "^1.20.0",
"fastify": "^5.12.1",
"fastify-plugin": "^6.0.0",
"ioredis": "^6.0.0",
"node-cron": "^4.6.0",
"resend": "^6.24.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.4.0",
"@vitest/coverage-v8": "4.1.11",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.4.1",
"pino-pretty": "^13.1.3",
"prettier": "3.9.6",
"prisma": "^7.10.0",
"tsc-alias": "^1.9.2",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"vite": "8.2.2",
"vitest": "^4.1.11"
},
"engines": {
"node": ">25"
}
}