generated from theodorusclarence/ts-nextjs-tailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.16 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
93
94
95
96
{
"name": "daak-bangla",
"description": "Post card delivery service to send post notes to your loved ones.",
"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 .",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install",
"supabase:start": "supabase gen types typescript --db-url postgres://postgres:[email protected]:6543/postgres > ./src/types_db.ts",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/react": "^1.7.8",
"@heroicons/react": "^2.0.14",
"@hookform/resolvers": "^2.9.11",
"@supabase/auth-helpers-nextjs": "^0.4.1",
"@supabase/auth-helpers-react": "^0.3.0",
"@supabase/auth-ui-react": "^0.2.6",
"@supabase/supabase-js": "^2.0.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"clsx": "^1.2.1",
"focus-visible": "^5.2.0",
"next": "^13.1.6",
"postcss": "^8.4.21",
"postcss-focus-visible": "^6.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-use": "^17.4.0",
"swr": "1.2.0",
"tailwind-merge": "^1.8.1",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-router-mock": "^0.7.5",
"next-sitemap": "^2.5.28",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"supabase": "^1.38.4",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=100",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
}
}