-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 783 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 783 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
29
30
31
32
33
{
"name": "sunerichat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node server-combined.js",
"start:api": "next start -p ${PORT:-3000}",
"start:ws": "node server.js"
},
"dependencies": {
"@webbtc/webln-types": "^3.0.0",
"concurrently": "^8.2.2",
"nanoid": "^3.3.7",
"next": "14.1.0",
"nostr-tools": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"webln": "^0.3.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}