-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.38 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.38 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.20.0",
"scripts": {
"dev": "infisical run -- next dev",
"build": "next build",
"start": "next start",
"prepare": "husky",
"lint": "biome check .",
"lint:fix": "biome check --write",
"test": "jest",
"test:watch": "jest --watch",
"i18n": "tsx ./scripts/validate-translations.ts",
"gen-api": "infisical run --command 'tsx ./scripts/generate-api.ts'"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@sentry/nextjs": "^10",
"@svgr/webpack": "^8.1.0",
"@t3-oss/env-nextjs": "^0.13.8",
"@tanstack/react-query": "^5.64.1",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.12.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"lucide-react": "^0.548.0",
"motion": "^12.23.24",
"next": "16.0.10",
"next-international": "^1.3.1",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "2.3.1",
"@commitlint/config-conventional": "^20.0.0",
"@faker-js/faker": "^10.1.0",
"@tailwindcss/postcss": "^4.1.16",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.9.1",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"commitlint": "^20.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.6",
"msw": "^2.7.0",
"orval": "^7.4.1",
"postcss": "^8.5.1",
"raw-loader": "^4.0.2",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "^4.1.16",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"biome check --write"
]
}
}