-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.5 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
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
122
123
{
"name": "nextjs-template",
"version": "1.0.0",
"description": "Production-grade Next.js starter template with App Router, TypeScript, Tailwind CSS, and comprehensive tooling for enterprise applications",
"private": true,
"keywords": [
"nextjs",
"react",
"typescript",
"tailwindcss",
"app-router",
"server-components",
"enterprise",
"template",
"starter",
"storybook",
"i18n",
"seo",
"tanstack-query",
"jotai",
"zod",
"docker"
],
"author": {
"name": "Yan Ouedraogo",
"email": "[email protected]",
"url": "https://rsm.io/ouedyan"
},
"repository": {
"type": "git",
"url": "https://github.com/ouedyan/nextjs-template"
},
"engines": {
"node": ">=18.18 <23"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "node .husky/install.mjs",
"postinstall": "node .husky/install.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ariakit/react": "0.4.13",
"@hookform/resolvers": "3.9.0",
"@nimpl/getters": "1.4.1",
"@nimpl/middleware-chain": "0.4.0",
"@radix-ui/react-slot": "1.1.0",
"@tanstack/react-query": "5.59.15",
"@tanstack/react-query-devtools": "5.59.15",
"axios": "1.7.7",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"es-toolkit": "1.25.2",
"intl-locale-textinfo-polyfill": "2.1.1",
"jotai": "2.10.1",
"jotai-devtools": "0.10.1",
"lucide-react": "0.453.0",
"next": "14.2.17",
"next-international": "1.2.4",
"next-seo": "6.6.0",
"next-superjson-plugin": "0.6.3",
"next-themes": "0.3.0",
"nuqs": "2.0.4",
"react": "18.3.1",
"react-datepicker": "7.5.0",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"react-number-format": "5.4.2",
"react-phone-number-input": "3.4.9",
"react-toastify": "10.0.6",
"remeda": "2.16.0",
"server-only": "0.0.1",
"sharp": "0.33.5",
"tailwind-merge": "2.5.4",
"zod": "3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "2.0.2",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/types": "19.5.0",
"@hookform/devtools": "4.3.1",
"@storybook/addon-essentials": "8.3.6",
"@storybook/addon-interactions": "8.3.6",
"@storybook/addon-links": "8.3.6",
"@storybook/addon-onboarding": "8.3.6",
"@storybook/blocks": "8.3.6",
"@storybook/nextjs": "8.3.6",
"@storybook/react": "8.3.6",
"@storybook/test": "8.3.6",
"@svgr/webpack": "8.1.0",
"@swc-jotai/debug-label": "0.1.1",
"@swc-jotai/react-refresh": "0.2.0",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.9",
"@tanstack/eslint-plugin-query": "5.59.7",
"@types/node": "22.7.8",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "14.2.17",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsonc": "2.16.0",
"eslint-plugin-storybook": "0.10.1",
"husky": "9.1.6",
"next-sitemap": "4.2.3",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-sort-json": "4.0.0",
"prettier-plugin-tailwindcss": "0.6.8",
"sass": "1.80.3",
"storybook": "8.3.6",
"tailwindcss": "3.4.14",
"tailwindcss-animate": "1.0.7",
"typescript": "5.6.3"
}
}