-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.56 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
{
"name": "offer-exchange-landing-page",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm 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",
"@heroicons/react": "^1.0.6",
"@hookform/resolvers": "2.9.5",
"@react-spring/web": "^9.4.5",
"@tailwindcss/typography": "0.5.3",
"body-scroll-lock": "3.1.5",
"clsx": "1.2.1",
"focus-visible": "^5.2.0",
"keen-slider": "6.7.0",
"next": "12.2.1",
"next-plausible": "^3.2.0",
"nodemailer": "6.7.7",
"postcss-focus-visible": "7.0.0",
"react": "18.2.0",
"react-div-100vh": "^0.7.0",
"react-dom": "18.2.0",
"react-hook-form": "7.33.1",
"react-icons": "4.4.0",
"tailwind-merge": "1.3.0",
"usehooks-ts": "^2.6.0",
"zod": "^3.17.3"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@next/env": "12.2.1",
"@svgr/webpack": "6.2.1",
"@tailwindcss/forms": "0.5.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/jest": "28.1.4",
"@types/nodemailer": "^6.4.4",
"@types/react": "18.0.15",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"autoprefixer": "10.4.7",
"eslint": "8.19.0",
"eslint-config-next": "12.2.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.1",
"jest": "28.1.2",
"jest-environment-jsdom": "28.1.2",
"lint-staged": "13.0.3",
"next-sitemap": "3.1.10",
"postcss": "8.4.14",
"postcss-100vh-fix": "^1.0.2",
"postcss-flexbugs-fixes": "^5.0.2",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.12",
"standard-version": "9.5.0",
"tailwindcss": "3.1.5",
"typescript": "4.7.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}