-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
43
44
45
{
"name": "api-gateway-platform",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "turbo run test",
"dev": "turbo run dev",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"prisma:generate": "prisma generate --schema=prisma/schema.prisma"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma",
"bcrypt",
"esbuild"
]
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"prisma": "^6.19.3",
"turbo": "^2.5.0"
},
"dependencies": {
"@prisma/client": "^6.19.3"
}
}