-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "ai-developer-feed",
"version": "0.1.0",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"packageManager": "pnpm@10.15.1",
"engines": {
"node": "22.x",
"pnpm": "10.x"
},
"scripts": {
"build": "turbo build",
"dev": "docker compose up -d --build api && pnpm --filter @ai-developer-feed/web dev",
"format": "turbo format",
"lint": "turbo lint",
"test": "turbo test",
"test:cov": "turbo test:cov",
"start:prod": "turbo start:prod",
"clean": "turbo clean && find . -name node_modules -type d -prune -exec rm -rf '{}' +"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/node": "^24.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^17.0.0",
"prettier": "^3.4.2",
"turbo": "^2.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"openai": "^4.76.0"
}
}