-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
{
"name": "data-viz-platform",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@aws-sdk/client-s3": "^3.712.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@huggingface/inference": "^2.6.4",
"@nextui-org/react": "^2.6.11",
"@prisma/client": "^6.1.0",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-vis": "^1.5.1",
"@tremor/react": "^3.18.6",
"@types/file-saver": "^2.0.7",
"@types/plotly.js": "^2.35.1",
"@upstash/ratelimit": "^1.0.0",
"@upstash/redis": "^1.34.3",
"autoprefixer": "^10.4.16",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"date-fns": "^2.30.0",
"docx": "^9.1.0",
"file-saver": "^2.0.5",
"framer-motion": "^11.16.0",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.4",
"langchain": "^0.0.212",
"mathjs": "^12.0.0",
"ml-kmeans": "^6.0.0",
"ml-regression": "^6.2.0",
"nanoid": "^5.0.4",
"next": "14.0.4",
"next-auth": "^4.24.11",
"openai": "^4.24.1",
"papaparse": "^5.4.1",
"plotly.js": "^2.35.3",
"plotly.js-dist-min": "^2.35.3",
"postcss": "^8.4.32",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-plotly.js": "^2.6.0",
"socket.io-client": "^4.8.1",
"sonner": "^1.3.1",
"tailwindcss": "^3.4.0",
"xlsx": "^0.18.5",
"zod": "^3.24.1",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.10.5",
"@types/papaparse": "^5.3.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-plotly.js": "^2.6.3",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"prisma": "^6.1.0",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}