-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·63 lines (63 loc) · 2.34 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
56
57
58
59
60
61
62
63
{
"name": "projectx",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:auth": "turbo run build --filter=auth",
"build:core": "turbo run build --filter=@projectx/core",
"build:order": "turbo run build --filter=order",
"build:product": "turbo run build --filter=product",
"build:ui": "turbo run build --filter=@projectx/ui",
"build:web": "turbo run build --filter=web",
"cli": "pnpm --filter @projectx/cli start",
"dev": "turbo run dev --parallel",
"dev:auth": "turbo run dev --filter=auth",
"dev:order": "turbo run dev --filter=order",
"dev:product": "turbo run dev --filter=product",
"dev:web": "turbo run dev --filter=web",
"gen:service": "turbo gen nestjs-service",
"gen:temporal-service": "turbo gen nestjs-temporal-service",
"gen:workflow": "turbo gen workflow",
"lint": "turbo run lint",
"lint:fix": "biome check --write .",
"list": "pnpm list --recursive --only-projects --json --depth -1",
"prepare": "husky",
"prisma:generate": "pnpm --filter @projectx/db run prisma:generate",
"prisma:migrate": "pnpm --filter @projectx/db run prisma:migrate",
"prisma:migrate:dev": "pnpm --filter @projectx/db run prisma:migrate:dev",
"prisma:seed": "pnpm --filter @projectx/db run prisma:seed",
"storybook": "turbo run dev --filter=storybook",
"storybook:build": "turbo run build --filter=storybook",
"test": "turbo run test",
"playground": "node .agents/skills/temporal-playground/server/dist/cli.js",
"playground:build": "cd .agents/skills/temporal-playground/server && npx tsup && cd ../ui && npx vite build",
"playground:dev": "cd .agents/skills/temporal-playground/ui && npx vite"
},
"dependencies": {
"@types/express": "5.0.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@playwright/test": "^1.58.0",
"@turbo/gen": "^2.7.5",
"@types/webpack": "^5.28.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pino-pretty": "13.1.1",
"playwright": "^1.58.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"turbo": "^2.7.5",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.12.3",
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
}
}