-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "saas-checkin",
"version": "0.0.0",
"private": true,
"description": "Multi-tenant SaaS event check-in platform (Phase 0 skeleton)",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev:up": "task dev:up",
"dev:down": "task dev:down",
"dev:logs": "task dev:logs",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\" --ignore-path .gitignore",
"clean": "turbo run clean && rm -rf node_modules .turbo"
},
"devDependencies": {
"prettier": "3.4.2",
"turbo": "2.3.3",
"typescript": "5.7.2"
},
"pnpm": {
"overrides": {
"vitest": "4.1.8",
"happy-dom": "20.10.2",
"webpack": "5.97.1",
"axios": "1.17.0",
"glob": "11.1.0",
"tmp": "0.2.7",
"rollup": "4.61.1",
"picomatch": "4.0.4",
"path-to-regexp": "8.4.2",
"lodash": "4.18.1",
"@nestjs/microservices": "11.1.24",
"@nestjs/common": "11.1.24",
"@nestjs/core": "11.1.24",
"@nestjs/platform-express": "11.1.24",
"@nestjs/websockets": "11.1.24"
}
},
"dependencies": {
"vite": "6"
}
}