-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "my-app",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"db:migrate": "pnpm --filter @workspace/lib run db:migrate",
"db:deploy": "pnpm --filter @workspace/lib run db:deploy",
"db:generate": "pnpm --filter @workspace/lib run db:generate",
"db:seed": "pnpm --filter @workspace/lib run db:seed",
"kafka-topic-and-search-setup": "pnpm --filter @workspace/lib run kafka-topic-and-search-setup",
"setup:all": "pnpm --filter @workspace/lib run setup:all",
"start": "turbo run start --parallel"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/ioredis": "^5.0.0",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"turbo": "^2.8.1",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20"
},
"dependencies": {
"dotenv": "^17.3.1",
"ioredis": "^5.10.0",
"tsx": "^4.21.0"
}
}