generated from theodorusclarence/ts-nextjs-tailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 2.65 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
{
"name": "ts-nextjs-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit --incremental false",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "^3.10.0",
"auto-zustand-selectors-hook": "^2.0.0",
"axios": "^0.26.0",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"immer": "^9.0.15",
"next": "^12.1.0",
"next-auth": "^4.2.1",
"node-mailjet": "^5.1.1",
"nodemailer": "^6.7.2",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.4",
"react-hook-form": "^7.27.1",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-image-lightbox": "^5.1.4",
"swr": "^1.2.2",
"tailwind-merge": "^1.2.0",
"zustand": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@svgr/webpack": "^6.2.1",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/node-mailjet": "^3.3.9",
"@types/nodemailer": "^6.4.4",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.39",
"@types/react-datepicker": "^4.3.4",
"@types/tailwindcss": "^2.2.4",
"@types/umami": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"next-sitemap": "^1.9.12",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"prisma": "^3.10.0",
"standard-version": "^9.3.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}