-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.73 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.73 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"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",
"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",
"db:deploy": "prisma 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.1.3",
"dependencies": {
"@aws-sdk/client-s3": "^3.1048.0",
"@fastify/awilix": "^8.2.0",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/env": "^6.0.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.1.0",
"@fastify/multipart": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@fastify/type-provider-typebox": "^6.1.0",
"@fastify/websocket": "^11.2.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sinclair/typebox": "^0.34.49",
"argon2": "^0.44.0",
"awilix": "^13.0.3",
"axios": "^1.16.1",
"fastify": "^5.8.5",
"fastify-plugin": "^5.1.0",
"ioredis": "^5.10.1",
"node-cron": "^4.2.1",
"resend": "^6.12.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.0",
"@vitest/coverage-v8": "4.1.7",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.0.5",
"pino-pretty": "^13.1.3",
"prettier": "3.8.3",
"prisma": "^7.8.0",
"tsc-alias": "^1.8.17",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "8.0.14",
"vitest": "^4.1.4"
},
"pnpm": {
"overrides": {
"hono": "4.12.18",
"@hono/node-server": "1.19.13",
"fast-xml-parser": "^5.5.7",
"lodash": "4.17.23",
"effect": "3.20.0",
"picomatch": "^4.0.4",
"yaml": "^2.8.3",
"brace-expansion": "^5.0.5",
"fast-jwt": "6.2.4",
"fast-uri": ">=3.1.2",
"vite": "8.0.14",
"ws": ">=8.20.1"
}
},
"engines": {
"node": ">25"
}
}