-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "codebuddy2api",
"version": "1.3.9",
"private": true,
"scripts": {
"dev": "next dev",
"docs:dev": "cd docs && bun run dev",
"docs:build": "cd docs && bun run build",
"docs:preview": "cd docs && bun run preview",
"prepare": "husky",
"build": "next build",
"test:e2e": "playwright test",
"start": "next start --hostname 0.0.0.0 --port 8001",
"lint": "eslint . --ext .ts,.tsx --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "rm -rf .next/types && next typegen && tsc --noEmit",
"test": "vitest run",
"commitlint": "commitlint",
"lint-staged": "lint-staged",
"test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=test-report.junit.xml",
"test:coverage": "vitest run --coverage",
"test:patch-branches": "bun scripts/check-patch-branches.ts"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.3.0",
"@lobehub/fluent-emoji": "^4.1.1",
"@lobehub/icons": "^5.18.0",
"@lobehub/ui": "^5.47.1",
"@simplewebauthn/browser": "^14.0.0",
"@simplewebauthn/server": "^14.0.2",
"antd": "^6.6.4",
"better-sqlite3": "^13.0.3",
"drizzle-orm": "^0.45.2",
"jotai": "^3.0.0",
"lucide-react": "^1.45.0",
"motion": "^12.43.0",
"next": "^16.3.4",
"next-intl": "^4.14.4",
"pg": "^8.23.0",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"zod": "^4.6.5"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@commitlint/types": "^21.2.0",
"@eslint/compat": "^2.1.1",
"@next/eslint-plugin-next": "^16.3.5",
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.2",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26.5.1",
"@types/pg": "^8.23.1",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"@vitest/coverage-v8": "^5.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.10.0",
"eslint-config-next": "^16.3.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"jsdom": "^30.0.1",
"lint-staged": "^17.5.1",
"pg-mem": "^3.0.14",
"postcss": "^8.5.28",
"prettier": "^3.9.6",
"sass": "^1.104.1",
"tailwindcss": "^4.3.3",
"typescript": "^5.8.2",
"vitest": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0 --no-warn-ignored --fix",
"prettier --check"
],
"*.{json,md,yml,yaml,css}": [
"prettier --check"
]
}
}