-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 2.29 KB
/
package.json
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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next start",
"dev:server": "next dev -p 4000",
"dev:reverse-ssl": "local-ssl-proxy --source 443 --target 4000",
"dev": "run-p dev:*",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@headlessui/react": "^2.1.2",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@tanstack/react-query": "^5.51.15",
"@tanstack/react-query-devtools": "^5.51.15",
"autoprefixer": "10.4.14",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"lucide-react": "^0.417.0",
"next": "^14.2.4",
"postcss": "8.4.45",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.4.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/node": "20.2.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "8.41.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^25.0.0",
"local-ssl-proxy": "^2.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "3.3.2",
"typescript": "^5.5.3",
"vitest": "^2.0.5"
},
"volta": {
"node": "20.11.1",
"yarn": "4.1.1"
}
}