-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "quizspot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"ws:dev-watch": "nodemon server.js",
"ws:dev": "node server.js",
"dev": "next dev",
"build": "prisma generate && next build",
"start:node": "NODE_ENV=production node server.js",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"prisma:sync": "npx prisma generate && npx prisma db push"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.0",
"@google/generative-ai": "^0.20.0",
"@prisma/client": "^5.20.0",
"apexcharts": "^3.54.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"framer-motion": "^11.11.4",
"mongoose": "^8.6.3",
"next": "14.2.13",
"next-auth": "^5.0.0-beta.21",
"next-themes": "^0.3.0",
"react": "^18",
"react-apexcharts": "^1.4.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-loading": "^2.0.3",
"react-timer-hook": "^3.0.7",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"prisma": "^5.20.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}