-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.62 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
{
"name": "codebuddy2api",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"prepare": "husky",
"build": "next build",
"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=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.0",
"@lobehub/icons": "^5.15.0",
"@lobehub/ui": "^5.29.1",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.2",
"antd": "^6.6.0",
"better-sqlite3": "^13.0.3",
"drizzle-orm": "^0.45.2",
"jotai": "^2.20.2",
"lucide-react": "^1.31.0",
"motion": "^12.42.2",
"next": "^16.3.0",
"next-intl": "^4.13.6",
"pg": "^8.23.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@eslint/compat": "^2.1.0",
"@next/eslint-plugin-next": "^16.3.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.0",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26.2.0",
"@types/pg": "^8.21.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "^0.31.10",
"eslint": "^10.8.1",
"eslint-config-next": "^16.3.0",
"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.3.0",
"pg-mem": "^3.0.14",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"sass": "^1.102.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.8.2",
"vitest": "^4.1.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier --check"
],
"*.{json,md,yml,yaml,css}": [
"prettier --check"
]
}
}