generated from yehezkielgunawan/yehez-nexttailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "qr-generator",
"private": true,
"version": "1.1.0",
"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",
"release": "standard-version",
"test": "jest",
"prettier:ci": "prettier --check ./**/*.{ts,tsx}",
"typescript:ci": "tsc --noEmit",
"test:ci": "jest --ci --collect-coverage --verbose"
},
"dependencies": {
"@fontsource/catamaran": "^4.5.10",
"@tailwindcss/forms": "0.5.10",
"clsx": "^1.2.1",
"html-to-image": "1.11.13",
"next": "13.5.8",
"next-seo": "5.15.0",
"next-themes": "^0.2.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "4.12.0",
"react-qrcode-logo": "2.10.0",
"tailwind-merge": "1.14.0"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"autoprefixer": "^10.4.4",
"eslint": "^8.13.0",
"eslint-config-next": "^13.4.1",
"eslint-config-yehezgun": "^1.2.6",
"husky": "^7.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^12.5.0",
"postcss": "8.5.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "0.1.13",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write src/"
],
"*.{json,css,scss,md}": [
"prettier --write src/"
]
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}