-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.83 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
{
"name": "behide-web-development",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"out": "next build && next export"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@sendgrid/mail": "^7.7.0",
"@stripe/stripe-js": "^1.25.0",
"bcrypt": "^5.1.1",
"contentful": "^9.2.14",
"eslint": "8.29.0",
"framer-motion": "^10.3.2",
"imagesloaded": "^5.0.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.0.1",
"next": "^13.2.4",
"nodemailer": "^6.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-markdown": "^9.0.1",
"safe-json-stringify": "^1.2.0",
"stripe": "^8.209.0",
"swiper": "^8.4.5",
"tailwind-merge": "^1.12.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.13",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint-config-next": "^13.2.4",
"postcss": "^8.4.20",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"IE 11"
],
"eslintIgnore": [
"node_modules",
".next",
"out"
],
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "html"
}
}
]
}
}