-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "nextjs13-with-antd-tailwindcss",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,ts,tsx,mdx}\" --cache",
"check": "prettier --check \"**/*.{js,ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@ant-design/cssinjs": "^1.10.1",
"antd": "^5.6.1",
"clsx": "^1.2.1",
"dayjs": "^1.11.8",
"lucide-react": "^0.244.0",
"next": "13.4.6",
"next-intl": "2.15.0-beta.5",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^1.13.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"autoprefixer": "^10.4.14",
"eslint": "7.32.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.12.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "4.9.5"
}
}