-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rr-studio",
"description": "rr-studio",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fmt": "prettier --write .",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"component:add": "pnpm dlx shadcn-ui@latest add",
"secretlint": "secretlint --maskSecrets --secretlintignore .gitignore '**/*'",
"usecase": "pnpm -F ./packages/usecase",
"domain": "pnpm -F ./packages/domain",
"gateway": "pnpm -F ./packages/gateway",
"db:up": "docker-compose -f ./environment/db/postgresql/docker-compose.yml up -d",
"db:down": "docker-compose -f ./environment/db/postgresql/docker-compose.yml down --volumes"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@tiptap/pm": "^2.2.4",
"@tiptap/react": "^2.2.4",
"@tiptap/starter-kit": "^2.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.363.0",
"next": "14.1.4",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.1",
"react-markdown": "^9.0.1",
"rehype": "^13.0.1",
"rehype-parse": "^9.0.0",
"rehype-react": "^8.0.0",
"remark-gfm": "^4.0.0",
"report-rendezvous-domain": "workspace:^",
"report-rendezvous-driver": "workspace:^",
"report-rendezvous-gateway": "workspace:^",
"report-rendezvous-usecase": "workspace:^",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"tsyringe": "^4.8.0",
"unified": "^11.0.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^8.1.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@vitest/ui": "^1.4.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.20.14",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"secretlint": "^8.1.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"private": true
}