forked from 202303-PRM-TR-FEW/cartoon_cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:build": "npx @cloudflare/next-on-pages",
"preview": "npm run pages:build && wrangler pages dev",
"deploy": "npm run pages:build && wrangler pages deploy"
},
"dependencies": {
"@capacitor/core": "^6.1.2",
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "^3.4.2",
"@libsql/client": "^0.6.2",
"@supabase/ssr": "^0.4.0",
"@supabase/supabase-js": "^2.45.0",
"@videojs/themes": "^1.0.1",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"babel-preset-es2015": "^6.24.1",
"bcryptjs": "^2.4.3",
"buffer": "^6.0.3",
"cloudinary": "^2.2.0",
"crypto-browserify": "^3.12.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"emailjs": "^4.0.3",
"fs": "^0.0.1-security",
"html-react-parser": "^5.1.16",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"keen-slider": "^6.8.6",
"next": "^14.2.13",
"next-auth": "^4.24.7",
"next-cloudinary": "^6.6.0",
"node-cache": "^5.1.2",
"papaparse": "^5.4.1",
"path": "^0.12.7",
"querystring": "^0.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^9.13.0",
"react-select": "^5.8.0",
"react-swipe": "^6.0.4",
"stream-browserify": "^3.0.0",
"uuid": "^10.0.0",
"video.js": "^8.17.4",
"videojs-contrib-ads": "^7.5.2",
"videojs-ima": "^2.3.0",
"videojs-vast-vpaid": "^3.0.0-beta.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@capacitor/cli": "^6.1.2",
"@cloudflare/next-on-pages": "^1.13.5",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"html-loader": "^5.0.0",
"postcss": "^8.4.38",
"supabase": "^1.187.10",
"tailwindcss": "^3.4.4"
}
}