-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.72 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
{
"name": "pixelbakery",
"author": "Jordan Lambrecht",
"email": "[email protected]",
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev --turbopack",
"aws-push": "aws s3 sync public s3://cdn.pixelbakery.com --exclude '*.DS_Store' --cache-control max-age=31536000",
"aws-push-delete": "aws s3 sync public s3://cdn.pixelbakery.com --exclude '*.DS_Store' --cache-control 'max-age=31536000' --delete",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"commitlint": "commitlint --edit",
"release": "standard-version --sign",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@sendgrid/mail": "^8.1.4",
"@vercel/speed-insights": "^1.1.0",
"busboy": "1.6.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.5.1",
"framer-motion": "^11.15.0",
"gray-matter": "4.0.3",
"next": "^15.1.2",
"next-mdx-remote": "^5.0.0",
"next-plausible": "^3.12.4",
"next-seo": "^6.6.0",
"prettier-plugin-jsdoc": "^1.3.2",
"react": "^19.0.0",
"react-calendly": "^4.3.1",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-lottie-player": "^2.1.0",
"react-player": "^2.16.0",
"react-select": "^5.9.0",
"remark-gfm": "4.0.0",
"swr": "^2.2.5",
"yup": "^1.6.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@next/bundle-analyzer": "^15.0.1",
"@next/eslint-plugin-next": "^15.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@types/busboy": "^1.5.3",
"@types/node": "^22.10.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.9",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"eslint-nibble": "^8.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.0",
"husky": "^9.1.0",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.16",
"semantic-release": "^24.2.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"version": "9.3.1"
}