generated from yehezkielgunawan/yehez-nexttailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"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.3",
"clsx": "^1.2.1",
"html-to-image": "^1.11.11",
"next": "^13.4.1",
"next-seo": "^5.14.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-qrcode-logo": "^2.8.0",
"tailwind-merge": "^1.12.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@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.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^12.5.0",
"postcss": "^8.4.8",
"prettier": "^2.8.8",
"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/"
]
}
}