-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.13 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.13 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
{
"name": "hmtc-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:dev":"next build --profile",
"start": "next start",
"lint": "next lint",
"lint:strict": "eslint --max-warnings=0 --no-warn-ignored \"**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"format": "pnpm run format:write && pnpm run lint:fix && pnpm run typecheck && pnpm run lint:strict",
"prepare": "exec husky init",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@tanstack/react-query": "^5.66.7",
"@tanstack/react-query-devtools": "^5.66.7",
"auto-zustand-selectors-hook": "^3.0.1",
"autoprefixer": "10.4.20",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"depcheck": "^1.4.7",
"eslint": "9.20.1",
"immer": "10.1.1",
"next": "^15.1.7",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "7.54.2",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.1",
"tailwindcss": "4.0.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.7.3",
"universal-cookie": "^7.2.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@next/eslint-plugin-next": "^15.2.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.0.6",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@types/react": "19.0.8",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"cssnano": "^7.0.6",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "8.5.2",
"prettier": "^3.5.1"
}
}