-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 880 Bytes
/
package.json
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
{
"name": "databuffet",
"private": true,
"scripts": {
"nip105-server": "bun run apps/server/index.ts",
"nip105-test-gpt": "bun run apps/server/tests/testChatGPT.ts",
"nip105-test-sd": "bun run apps/server/tests/testStableDiffusion.ts",
"nip105-test-storage": "bun run apps/server/tests/testStorage.ts",
"nip105-viewer": "cd apps/viewer && bun run dev"
},
"devDependencies": {
"bun-types": "latest"
},
"workspaces": [
"packages/utils",
"packages/nip105",
"apps/viewer",
"apps/server"
],
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/body-parser": "^1.19.4",
"body-parser": "^1.20.2",
"bolt11": "^1.4.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"multer": "^1.4.5-lts.1",
"nostr-tools": "^1.17.0",
"webln": "^0.3.2"
}
}