forked from ssak-three/ssakssak-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.01 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.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
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
{
"name": "ssakssak-commit",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"check": "eslint . && prettier --check",
"prepare": "husky",
"svgo": "svgo -f public -o public",
"worker:start": "WORKER=1 tsx --env-file=.env src/infra/messaging/worker/worker.ts"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@octokit/request-error": "^7.0.0",
"@prisma/client": "^6.15.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"bullmq": "^5.58.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"html-react-parser": "^5.2.6",
"ioredis": "^5.7.0",
"lucide-react": "^0.542.0",
"mermaid": "^11.10.1",
"next": "15.5.2",
"next-auth": "^4.24.11",
"octokit": "^5.0.3",
"openai": "^5.16.0",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"pretendard": "^1.3.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1",
"tsx": "^4.20.5",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.13",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.15.0",
"svgo": "^4.0.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier --check"
],
"*.{css,md,json,yml,yaml}": [
"prettier --check"
]
}
}