-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
{
"name": "@bytebrush/orbiplex",
"version": "1.0.0-beta.1",
"description": "The sleek, stylish, modern and powerful listing platform.",
"license": "AGPL-3.0-only",
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"lint": "next lint",
"prepare": "husky",
"start:production": "next start -p 3000",
"start:staging": "next start -p 3001"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.62.15",
"@tanstack/react-query-devtools": "^5.63.0",
"class-variance-authority": "^0.7.1",
"dotenv": "^16.4.5",
"framer-motion": "^11.3.19",
"geist": "^1.3.1",
"google-auth-library": "^10.1.0",
"lucide-react": "^0.446.0",
"next": "15.3.3",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"tsup": "^8.3.6",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"clsx": "^2.1.1",
"commitlint": "^19.6.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8",
"prettier": "^3.5.0",
"sort-package-json": "^3.2.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3"
}
}