-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 798 Bytes
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
{
"name": "moshcoding",
"version": "0.2.0",
"private": true,
"description": "Code hard. Mosh harder. Next.js + Bun. Landing + one-line metal coming-soon pages with email waitlist and CoinPayPortal login.",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start -p ${PORT:-8080}",
"lint": "next lint",
"test": "bun test tests/",
"dns": "bun run scripts/moshpit-dns.ts"
},
"dependencies": {
"@profullstack/libsql-pg": "^0.1.3",
"@profullstack/stack": "0.1.3",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@libsql/client": "^0.15.7",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"typescript": "^5.7.0"
}
}