-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"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": ">=18.0.0",
"pnpm": ">=8.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": "turbo run format",
"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",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "turbo run build && changeset publish",
"release": "pnpm changeset:version && pnpm changeset:publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"turbo": "^2.3.0"
}
}