-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 923 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 923 Bytes
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
{
"name": "leylek",
"private": true,
"version": "0.0.1",
"description": "Multi-agent otonom dijital pazarlama platformu (Cloudflare Workers + Gemini 2.5)",
"license": "UNLICENSED",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:seed": "tsx scripts/seed-demo-data.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@playwright/test": "^1.50.0",
"@types/node": "^22.10.0",
"husky": "^9.1.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@11.0.9"
}