-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.03 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
{
"name": "my-next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx concurrently \"npm:dev-frontend\" \"npm:dev-backend\"",
"dev2": "npx concurrently \"npm:dev-frontend\" \"npm:start-5001\"",
"dev-frontend": "next dev",
"dev-backend": "node app/api/backend.mjs",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start-5000": "cross-env PORT=5000 node app/api/backend.mjs",
"start-5001": "cross-env PORT=5001 node app/api/backend.mjs"
},
"dependencies": {
"@fontsource/outfit": "^5.1.0",
"@openzeppelin/contracts": "^5.1.0",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-icons": "^1.3.0",
"@supabase/supabase-js": "^2.45.5",
"@tsparticles/all": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"axios": "^1.7.7",
"chart.js": "^4.4.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.21.1",
"framer-motion": "^11.11.11",
"gray-matter": "^4.0.3",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.10.2",
"jspdf": "^2.5.2",
"lucide": "^0.446.0",
"lucide-react": "^0.446.0",
"marked": "^14.1.3",
"mongoose": "^8.7.1",
"multer": "^1.4.5-lts.1",
"next": "14.2.13",
"node": "^22.9.0",
"pdfjs-dist": "^4.7.76",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-dropzone": "^14.3.5",
"react-markdown": "^9.0.1",
"react-tsparticles": "^2.12.2",
"remark-gfm": "^4.0.0",
"solc": "^0.8.27",
"supabase": "^1.204.3",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.2",
"web3": "^4.13.0"
},
"devDependencies": {
"@types/node": "^20.16.7",
"@types/react": "^18.3.9",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.12",
"typescript": "^5.6.2"
}
}