aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package-lock.json24
-rw-r--r--package.json1
-rw-r--r--src/app/layout.tsx2
3 files changed, 2 insertions, 25 deletions
diff --git a/package-lock.json b/package-lock.json
index 06b5906..b382569 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,15 +1,14 @@
{
"name": "invoices",
- "version": "0.3.0",
+ "version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "invoices",
- "version": "0.3.0",
+ "version": "0.1.0",
"dependencies": {
"@hookform/resolvers": "^3.3.4",
- "@next/third-parties": "^16.2.7",
"blob-stream": "^0.1.3",
"clsx": "^2.1.1",
"next": "^16.2.6",
@@ -1200,19 +1199,6 @@
"node": ">= 10"
}
},
- "node_modules/@next/third-parties": {
- "version": "16.2.7",
- "resolved": "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.2.7.tgz",
- "integrity": "sha512-mSvF8eg2egIqP0GaPYn0sDvsP45CodwVsavl7RkLsOVQL/CDy7wUg0WUV5uEtlWoWOq0pEYRRsbld7NQIh+Eqg==",
- "license": "MIT",
- "dependencies": {
- "third-party-capital": "1.0.20"
- },
- "peerDependencies": {
- "next": "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0",
- "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
- }
- },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -6370,12 +6356,6 @@
"url": "https://opencollective.com/webpack"
}
},
- "node_modules/third-party-capital": {
- "version": "1.0.20",
- "resolved": "https://registry.npmjs.org/third-party-capital/-/third-party-capital-1.0.20.tgz",
- "integrity": "sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==",
- "license": "ISC"
- },
"node_modules/tiny-inflate": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz",
diff --git a/package.json b/package.json
index 4579629..5efa6d4 100644
--- a/package.json
+++ b/package.json
@@ -10,7 +10,6 @@
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
- "@next/third-parties": "^16.2.7",
"blob-stream": "^0.1.3",
"clsx": "^2.1.1",
"next": "^16.2.6",
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1a1dbf0..8630def 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,5 @@
import type { Metadata } from 'next';
import { Geist, Geist_Mono } from 'next/font/google';
-import { GoogleAnalytics } from '@next/third-parties/google';
import './globals.css';
const geistSans = Geist({
@@ -30,7 +29,6 @@ export default function RootLayout({
>
{children}
</body>
- <GoogleAnalytics gaId="G-PPNQQX1XCD" />
</html>
);
}