@fractalpay/fractalpay-next-dev 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/global.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ interface Window {
2
+ DatacapWebToken: any; // Replace with the actual type of DatacapWebToken if it's not a string
3
+ }
package/next-env.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /// <reference types="next" />
2
+ /// <reference types="next/image-types/global" />
3
+
4
+ // NOTE: This file should not be edited
5
+ // see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
package/next.config.ts ADDED
@@ -0,0 +1,7 @@
1
+ import type { NextConfig } from "next";
2
+
3
+ const nextConfig: NextConfig = {
4
+ /* config options here */
5
+ };
6
+
7
+ export default nextConfig;
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@fractalpay/fractalpay-next-dev",
3
+ "version": "0.0.1",
4
+ "private": false,
5
+ "scripts": {
6
+ "dev": "next dev -p 4001",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "next lint",
10
+ "bundle": "tsup src/app/index.ts"
11
+ },
12
+ "dependencies": {
13
+ "@types/yup": "^0.29.14",
14
+ "axios": "^1.8.1",
15
+ "bootstrap": "^5.3.3",
16
+ "credit-card-type": "^10.0.1",
17
+ "formik": "^2.4.6",
18
+ "next": "15.0.3",
19
+ "node-forge": "^1.3.1",
20
+ "react": "18.3.1",
21
+ "react-bootstrap": "^2.10.5",
22
+ "react-bs-datatable": "^3.15.0",
23
+ "react-datepicker": "^7.5.0",
24
+ "react-dom": "18.3.1",
25
+ "react-icons": "^5.5.0",
26
+ "react-number-format": "^5.4.3",
27
+ "react-toastify": "^10.0.6",
28
+ "socket.io-client": "^4.8.1",
29
+ "styled-components": "^6.1.15",
30
+ "sweetalert2": "^11.22.0",
31
+ "yup": "^1.6.1"
32
+ },
33
+ "peerdependencies": {
34
+ "next": "15.0.3",
35
+ "react": "18.3.1",
36
+ "react-dom": "18.3.1"
37
+ },
38
+ "devDependencies": {
39
+ "@types/node": "^20",
40
+ "@types/node-forge": "^1.3.11",
41
+ "@types/react": "^18",
42
+ "@types/react-dom": "^18",
43
+ "autoprefixer": "^10.4.20",
44
+ "credit-card-type": "^10.0.1",
45
+ "eslint": "^8",
46
+ "eslint-config-next": "15.0.3",
47
+ "react-bs-datatable": "^3.15.0",
48
+ "react-datepicker": "^7.5.0",
49
+ "react-toastify": "^10.0.6",
50
+ "tsup": "^8.4.0",
51
+ "typescript": "^5"
52
+ },
53
+ "author": "Mukul",
54
+ "license": "MIT",
55
+ "keywords": [
56
+ "nextjs",
57
+ "next",
58
+ "typescript",
59
+ "tailwindcss"
60
+ ],
61
+ "main": "dist/index.js",
62
+ "publishConfig": {
63
+ "access": "public"
64
+ }
65
+ }