-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
73 lines (73 loc) · 2.2 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
{
"name": "animetrix",
"version": "3.6.0",
"private": false,
"description": "Animetrix is a project that utilizes the Anilist platform to obtain information on various anime titles, and it combines this data with the Gogoanime API to provide ad-free streaming of anime content.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest",
"fix-imports": "import-sort --write './src/**/*.ts' './src/**/*.tsx'"
},
"dependencies": {
"@google/generative-ai": "^0.2.1",
"@react-email/components": "^0.0.7",
"@react-email/render": "^0.0.7",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "20.8.2",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.1.1",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookies-next": "^4.0.0",
"dotenv": "^16.3.1",
"eslint": "8.46.0",
"eslint-config-next": "^13.5.6",
"follow-redirects": "^1.15.6",
"framer-motion": "^10.16.4",
"i": "^0.3.7",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.354.0",
"mailgen": "^2.0.27",
"mocha": "^10.2.0",
"mongoose": "^7.5.4",
"next": "^13.5.6",
"next-pwa": "^5.6.0",
"nextjs-toploader": "^1.6.4",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.6",
"npm": "^10.2.0",
"postcss": "8.4.27",
"react": "18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-drag-drop-files": "^2.3.10",
"react-email": "^1.9.5",
"react-hot-toast": "^2.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^9.0.1",
"react-spinners": "^0.13.8",
"swiper": "^10.1.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/jest": "^29.5.11",
"@types/nodemailer": "^6.4.11",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"import-sort-cli": "^6.0.0",
"prettier": "3.0.2",
"ts-jest": "^29.1.1"
}
}