generated from yehezkielgunawan/yehez-nexttailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
{
"name": "yehezgun-v3",
"private": true,
"version": "0.2.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"release": "standard-version",
"test": "jest --watch",
"test:ci": "jest --ci --collect-coverage --verbose",
"format": "biome format --write src",
"format:ci": "biome format --check src",
"typescript:ci": "tsc --noEmit",
"migrate-eslint": "biome migrate eslint --write",
"migrate-prettier": "biome migrate prettier --write"
},
"engines": {
"node": "^14.18.0 || >=18.0.0"
},
"dependencies": {
"@fontsource/fira-sans": "^5.0.2",
"@fontsource/pt-serif": "^4.5.11",
"@giscus/react": "^2.2.8",
"@headlessui/react": "^1.7.15",
"@tailwindcss/forms": "^0.4.1",
"@tippyjs/react": "^4.2.6",
"clsx": "^1.2.1",
"next": "^13.4.1",
"next-sanity": "^1.1.0",
"next-seo": "^6.0.0",
"next-themes": "^0.2.1",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"tailwind-merge": "^1.12.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@sanity/image-url": "^1.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.13.0",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/testing-library__react": "^10.2.0",
"@types/umami": "^0.1.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.4",
"eslint-config-yehezgun": "^1.2.6",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^12.3.7",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"resolutions": {
"autoprefixer": "10.4.14"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome check --write src",
"biome format --write src",
"biome lint --write src"
],
"*.{json,css,scss,md}": [
"biome format --write"
]
}
}