-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "api",
"version": "1.0.0",
"private": true,
"license": "SEE LICENSE in /LICENSE",
"type": "module",
"scripts": {
"build": "next build",
"build:prod": "cd ../../services/db && pnpm run migrate && cd ../../apps/api && next build",
"dev": "next dev -p 3300",
"dev:e2e": "next dev -p 4300",
"format:check": "prettier --log-level=warn --check \"**/*.{ts,tsx}\" \"!.next\"",
"start": "next start",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@op/api": "workspace:*",
"@op/core": "workspace:*",
"@op/logging": "workspace:*",
"@op/supabase": "workspace:*",
"@op/ui": "workspace:*",
"@op/workflows": "workspace:*",
"@trpc/server": "11.6.0",
"dotenv": "^16.4.7",
"next": "catalog:",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "catalog:"
},
"devDependencies": {
"@op/typescript-config": "workspace:*",
"@tailwindcss/postcss": "4.1.8",
"postcss": "^8.5.3",
"tailwindcss": "4.1.8",
"typescript": "5.7.3"
}
}