-
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) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 997 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
36
37
{
"name": "pablotor-platform",
"version": "0.0.3",
"private": true,
"description": "An elegant platform for a more civilized age",
"author": "pablotor",
"license": "MIT",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"infra:dev:up": "docker compose -f infra/docker-compose.local.yml up -d",
"infra:dev:down": "docker compose -f infra/docker-compose.local.yml down",
"infra:dev:logs": "docker compose -f infra/docker-compose.local.yml logs -f",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.2.5",
"turbo": "^2.9.16"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@1.22.22",
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"postcss": "^8.5",
"multer": "^2.2"
}
}