sol-mem-gen/package.json
adwait ff48bdb954 Compile TypeScript custom server in start script (#8)
Co-authored-by: Adw8 <adwaitgharpure@gmail.com>
Reviewed-on: deep-stack/sol-mem-gen#8
Co-authored-by: adwait <adwait@noreply.git.vdb.to>
Co-committed-by: adwait <adwait@noreply.git.vdb.to>
2025-01-31 09:13:12 +00:00

40 lines
1014 B
JSON

{
"name": "solana-meme-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ts-node --project tsconfig.server.json server.ts",
"build": "next build",
"start": "tsc --project tsconfig.server.json && NODE_ENV=production PORT=80 node dist/server.js",
"lint": "next lint"
},
"dependencies": {
"@fal-ai/client": "^1.2.1",
"@google/generative-ai": "^0.21.0",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.78.4",
"big.js": "^6.2.2",
"bn.js": "^5.2.0",
"dotenv": "^16.4.7",
"next": "13.5.4",
"openai": "^4.77.0",
"react": "^18",
"react-dom": "^18",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"tailwindcss": "^3",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}