-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 KB
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
75
{
"name": "openlaunch",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run type-check && eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx lib/db/migrate.ts",
"db:seed": "tsx lib/db/seed.ts",
"db:test": "tsx lib/db/test.ts",
"db:studio": "drizzle-kit studio"
},
"keywords": [
"solana",
"meme-token",
"dammv2",
"launchpad"
],
"author": "",
"license": "MIT",
"description": "Meme Token Launchpad on Solana with DAMMv2 Integration",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/umi": "^1.4.1",
"@metaplex-foundation/umi-bundle-defaults": "^1.4.1",
"@metaplex-foundation/umi-web3js-adapters": "^1.4.1",
"@meteora-ag/cp-amm-sdk": "^1.2.3",
"@solana/spl-token": "^0.4.14",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-wallets": "^0.19.37",
"@solana/web3.js": "^1.98.4",
"@types/node": "^24.10.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"better-sqlite3": "^12.4.1",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.553.0",
"next": "^16.0.1",
"node-cron": "^4.2.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.66.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"autoprefixer": "^10.4.21",
"drizzle-kit": "^0.31.6",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.3",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.18",
"tsx": "^4.20.6"
},
"overrides": {
"bigint-buffer": "1.1.5",
"fast-redact": "3.5.0"
}
}