generated from yehezkielgunawan/yehez-nexttailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "yehez-vercel-og",
"private": true,
"version": "0.0.3",
"scripts": {
"clean": "rm -rf .next coverage node_modules tsconfig.tsbuildinfo",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"prettier:ci": "prettier --check ./**/*.{ts,tsx}",
"typescript:ci": "tsc --noEmit",
"test:ci": "jest --ci --collect-coverage --verbose"
},
"dependencies": {
"@fontsource/fira-sans": "^4.5.10",
"@tailwindcss/forms": "^0.4.0",
"@vercel/og": "^0.0.20",
"clsx": "^1.1.1",
"next": "^13.3.4",
"next-seo": "^6.0.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"tailwind-merge": "^1.12.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.8.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/node": "^18.11.9",
"@types/react": "^18.2.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-next": "^13.3.4",
"eslint-config-yehezgun": "^1.2.2",
"husky": "^7.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^12.3.4",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.10",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write src/"
],
"*.{json,css,scss,md}": [
"prettier --write src/"
]
}
}