-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "next-tailwind-ts",
"version": "2.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint --fix --dir pages --dir lib --dir src",
"prepare": "husky install",
"test:all": "vitest --run --passWithNoTests --coverage",
"test:browser": "vitest --browser"
},
"dependencies": {
"@commitlint/cli": "^17.2.0",
"@headlessui/react": "^1.7.6",
"@next/env": "*",
"@tailwindcss/container-queries": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"axios": "^1.0.0",
"clsx": "^1.2.1",
"next": "^13.1.2",
"next-seo": "^5.15.0",
"next-sitemap": "^3.1.43",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"retry-axios": "^3.0.0",
"tailwind-merge": "^1.8.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^3.0.1",
"@commitlint/config-conventional": "^17.2.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/react": "^13.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@vitest/browser": "^0.28.3",
"@vitest/coverage-c8": "^0.28.3",
"@vitest/ui": "^0.28.2",
"autoprefixer": "^10.4.4",
"eslint": "8.32.0",
"eslint-config-next": "^13.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.0.4",
"postcss": "^8.4.12",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.1",
"typescript": "4.9.4",
"vite": "^4.0.4",
"vitest": "^0.28.2"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}