-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "abnmo-frontend",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"test": "jest",
"test:watch": "jest --watch",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "eslint . && tsc --noEmit",
"lint:tsc": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-beta.6",
"@hookform/resolvers": "5.0.1",
"@radix-ui/react-checkbox": "1.2.2",
"@radix-ui/react-dropdown-menu": "2.1.15",
"@radix-ui/react-popover": "1.1.14",
"@radix-ui/react-radio-group": "1.3.6",
"@radix-ui/react-slot": "1.2.0",
"@tanstack/react-query": "5.83.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"jsonwebtoken": "9.0.2",
"lucide-react": "0.531.0",
"next": "16.1.6",
"prettier": "3.6.2",
"react": "19.2.4",
"react-day-picker": "9.8.0",
"react-dom": "19.2.4",
"react-hook-form": "7.55.0",
"recharts": "3.1.0",
"sonner": "2.0.4",
"tailwind-merge": "3.2.0",
"zod": "3.24.3",
"zustand": "5.0.6"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "9.33.0",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.5.0",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "^4",
"ts-node": "10.9.2",
"typescript": "^5",
"typescript-eslint": "8.29.0"
}
}