Skip to content

Commit 1ca5c70

Browse files
committed
Delete better-auth stuff
1 parent 5d3325d commit 1ca5c70

File tree

23 files changed

+28
-1388
lines changed

23 files changed

+28
-1388
lines changed

.env

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
BETTER_AUTH_SECRET=
21
AUTH_BASE_URL=
3-
PG_URL=
42
NEXT_PUBLIC_CONFIDENTIAL_ASSET_MODULE_ADDR=
53

64
NEXT_PUBLIC_GOOGLE_CLIENT_ID=
75
GOOGLE_CLIENT_SECRET=
86

97
NEXT_PUBLIC_APPLE_CLIENT_ID=
108
APPLE_CLIENT_SECRET=
11-
APPLE_TEAM_ID=
12-
APPLE_KEY_ID=
13-
APPLE_PRIVATE_KEY=
149

1510
FORCE_MAINTENANCE_PAGE=true

.env.example

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
BETTER_AUTH_SECRET=
21
AUTH_BASE_URL=
3-
PG_URL=
42
NEXT_PUBLIC_CONFIDENTIAL_ASSET_MODULE_ADDR=
53

64
NEXT_PUBLIC_GOOGLE_CLIENT_ID=
75
GOOGLE_CLIENT_SECRET=
86

97
NEXT_PUBLIC_APPLE_CLIENT_ID=
108
APPLE_CLIENT_SECRET=
11-
APPLE_TEAM_ID=
12-
APPLE_KEY_ID=
13-
APPLE_PRIVATE_KEY=
149

1510
FORCE_MAINTENANCE_PAGE=true

next.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import createNextIntlPlugin from 'next-intl/plugin';
44
const nextConfig = {
55
// output: 'standalone',
66
productionBrowserSourceMaps: true,
7-
distDir: './dist',
87
eslint: {
98
ignoreDuringBuilds: true,
109
},

package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "confidential-payments-example",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.0.1",
55
"gitHooks": {
6-
"pre-commit": "pnpm lint && pnpm type-check",
7-
"pre-push": "pnpm rsc"
6+
"pre-commit": "pnpm format:check && pnpm lint:check && pnpm type-check"
87
},
98
"scripts": {
109
"dev": "next dev --port 3020",
@@ -14,8 +13,7 @@
1413
"lint:check": "eslint \"{src,config}/**/*.{js,ts,jsx,tsx}\" --max-warnings=0",
1514
"format": "prettier . --write --log-level=warn",
1615
"format:check": "prettier . --check",
17-
"type-check": "tsc --noEmit",
18-
"rsc": "node scripts/release-sanity-check.mjs"
16+
"type-check": "tsc --noEmit"
1917
},
2018
"dependencies": {
2119
"@aptos-labs/confidential-asset-wasm-bindings": "^0.0.2",
@@ -43,7 +41,6 @@
4341
"@rescale/nemo": "^1.4.0",
4442
"@tanstack/react-query": "^5.66.0",
4543
"axios": "^1.8.2",
46-
"better-auth": "^1.2.7",
4744
"boring-avatars": "^1.11.2",
4845
"buffer": "^6.0.3",
4946
"class-variance-authority": "^0.7.1",
@@ -62,7 +59,6 @@
6259
"next-intl": "^4.0.2",
6360
"next-themes": "^0.4.6",
6461
"ogl": "^1.0.11",
65-
"pg": "^8.14.1",
6662
"postprocessing": "^6.37.1",
6763
"process": "^0.11.10",
6864
"react": "^18.3.1",
@@ -102,7 +98,6 @@
10298
"@types/jsonwebtoken": "^9",
10399
"@types/lodash": "^4.17.15",
104100
"@types/node": "^20.17.17",
105-
"@types/pg": "^8",
106101
"@types/react": "^18.3.18",
107102
"@types/react-dom": "^18.3.5",
108103
"@types/three": "^0",

0 commit comments

Comments
 (0)