forked from Informatics-ITS/ta-mvinorian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.16 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "node-clash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky && next-ws patch",
"drizzle:push": "drizzle-kit push",
"drizzle:generate": "drizzle-kit generate"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tooltip": "^1.2.7",
"@reactour/tour": "^3.8.0",
"@tanstack/react-query": "^5.76.1",
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"embla-carousel-react": "^8.6.0",
"immer": "^10.1.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.511.0",
"motion": "^12.12.1",
"next": "15.3.1",
"next-intl": "^4.1.0",
"next-themes": "^0.4.6",
"next-ws": "^2.0.7",
"pg": "^8.16.0",
"query-string": "^9.1.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.56.4",
"sonner": "^2.0.3",
"tailwind-merge": "^3.3.0",
"universal-cookie": "^8.0.1",
"ws": "^8.18.2",
"zod": "^3.24.4",
"zustand": "^5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.3.2",
"@tailwindcss/postcss": "^4",
"@types/bcrypt": "^5.0.2",
"@types/d3": "^7.4.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/pg": "^8.15.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.1",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.0",
"typescript": "^5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"vercel"
]
]
}
},
"lint-staged": {
"**/*.{ts,tsx,js,mjs}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
],
"**/*.{json,css,scss,md,mdx}": [
"prettier --write"
]
}
}