-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
{
"name": "forge-works",
"version": "0.4.0",
"private": true,
"description": "ForgeWorks - Internal Developer Platform (Platform Orchestrator)",
"repository": {
"type": "git",
"url": "https://github.com/adamatdevops/forge-works.git"
},
"author": "Adam Keinan",
"license": "MIT",
"engines": {
"node": ">=20.0.0 <22.0.0",
"pnpm": ">=9.0.0 <10.0.0"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"dev:backend": "turbo run dev --filter=@forge-works/backend",
"dev:frontend": "turbo run dev --filter=@forge-works/frontend",
"test:backend": "turbo run test --filter=@forge-works/backend",
"test:frontend": "turbo run test --filter=@forge-works/frontend",
"lint:backend": "turbo run lint --filter=@forge-works/backend",
"lint:frontend": "turbo run lint --filter=@forge-works/frontend"
},
"devDependencies": {
"prettier": "3.6.2",
"turbo": "^2.10.9"
},
"pnpm": {
"overrides": {
"brace-expansion@1": "^1.1.18",
"brace-expansion@2": "^2.1.4",
"minimatch@3": "^3.1.4",
"minimatch@9": "^9.0.7",
"js-yaml@4": "^4.3.1",
"flatted@3": "^3.4.2",
"ajv@6": "^6.14.0",
"@babel/core@7": "^7.29.6",
"rollup@<4.59.0": "^4.59.0",
"picomatch@<2.3.2": "^2.3.2",
"picomatch@>=4 <4.0.4": "^4.0.4",
"postcss@<8.5.23": "^8.5.23",
"esbuild@<0.28.1": "^0.28.1",
"sharp@<0.35.0": "^0.35.0"
}
}
}