-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.29 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": "shibaac",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --verbose",
"coverage": "jest --coverage"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/prisma/seed.ts",
"schema": "src/prisma/schema.prisma"
},
"node": {
"version": "20.9.0"
},
"dependencies": {
"@chakra-ui/react": "^2.10.4",
"@chakra-ui/theme-tools": "^2.2.7",
"@ckeditor/ckeditor5-build-classic": "^43.3.1",
"@ckeditor/ckeditor5-react": "^9.3.1",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/dm-sans": "^5.1.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "^5.22.0",
"@stripe/stripe-js": "^5.2.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"dotenv": "^16.4.5",
"fast-xml-parser": "^4.5.0",
"framer-motion": "^11.11.17",
"iron-session": "^6.3.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.4",
"net": "^1.0.2",
"next": "^15.0.3",
"next-seo": "^6.6.0",
"nextjs-toploader": "^3.7.15",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"promise-socket": "^8.0.0",
"qrcode": "^1.5.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.53.2",
"react-icons": "^5.3.0",
"sanitize-html": "^2.13.1",
"shibaac": "file:",
"stripe": "^17.4.0",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.3.12",
"@types/react-google-recaptcha": "^2.1.9",
"@types/sanitize-html": "^2.13.0",
"@types/yup": "^0.29.14",
"autoprefixer": "^10.4.20",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"node-mocks-http": "^1.16.1",
"prettier": "3.3.3",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}