-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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
97
98
99
100
{
"name": "website",
"version": "0.1.1",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "node ./scripts/use-yarn.js",
"find:unused": "next-unused",
"prebuild": "node ./scripts/check-envs.js",
"dev": "yarn && next dev -p 3001",
"dev:tw": "TAILWIND_MODE=watch tailwindcss -o src/tailwind.css --watch",
"build": "node ./scripts/check-envs.js && next build",
"start": "next start",
"prod": "next export",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome",
"lint": "eslint --quiet './**/*.{js,ts,tsx}'"
},
"dependencies": {
"@cemalgnlts/mailjs": "^3.0.1",
"@coderosh/images-to-pdf": "^2.1.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@headlessui/react": "1.6.6",
"@iconscout/react-unicons": "^1.1.6",
"@mui/material": "^5.15.21",
"@phosphor-icons/react": "^2.1.5",
"@sendgrid/mail": "^8.1.0",
"@stripe/react-stripe-js": "^2.7.3",
"@stripe/stripe-js": "^4.1.0",
"@types/offscreencanvas": "^2019.7.3",
"aos": "^2.3.4",
"autoprefixer": "^10.0.2",
"axios": "^0.28.0",
"bytes": "^3.1.0",
"clamscan": "^2.0.1",
"cookies": "^0.8.0",
"dgram": "^1.0.1",
"dompurify": "^3.2.0",
"dotenv": "^8.2.0",
"eslint-config-next": "13",
"hamburger-react": "^2.4.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"moment": "^2.29.1",
"next": "13",
"next-csrf": "^0.2.1",
"next-share": "^0.18.1",
"pdf-lib": "^1.17.1",
"prettysize": "^2.0.0",
"random-words": "^2.0.0",
"react": "^18.2.0",
"react-bootstrap": "^1.4.0",
"react-device-detect": "^1.17.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.2.1",
"react-hook-form": "^7.52.2",
"react-hook-roulette": "^0.0.10",
"react-live-chat-loader": "^2.8.0",
"react-loading-skeleton": "^3.3.1",
"react-markdown": "6.0.3",
"react-parallax": "^3.3.0",
"react-select": "^5.7.0",
"react-toastify": "^9.1.1",
"react-tooltip": "^5.27.0",
"tesseract.js": "^5.0.5",
"useragent": "^2.3.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.39",
"@svgr/webpack": "^6.5.1",
"@types/jest": "^29.4.0",
"@types/memory-cache": "^0.2.1",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "^13.12.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"next-unused": "^0.0.6",
"postcss": "8.4.31",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"reset-css": "5.0.1",
"sass": "1.41.0",
"swc-plugin-coverage-instrument": "^0.0.20",
"tailwindcss": "^3.4.10",
"typescript": "^4.1.5"
},
"browser": {
"child_process": false
},
"engines": {
"node": ">=18.0.0"
}
}