forked from Prompt-Hash-Stellar/prompt-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "prompthash-server",
"version": "1.0.0",
"description": "server for the prompthash on stellar",
"bin": {
"contacts": "./build/index.js"
},
"main": "server.js",
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint .",
"format": "prettier --write .",
"build": "tsc",
"dev": "nodemon --watch src --exec ts-node src/server.ts",
"start": "node build/server.js",
"backup": "ts-node scripts/runBackup.ts",
"reindex": "ts-node scripts/reIndexFromLedger.ts",
"reindex:dry-run": "ts-node scripts/reIndexFromLedger.ts --dry-run"
},
"files": [
"build"
],
"keywords": [
"AI",
"NFT",
"Blockchain",
"Stellar",
"Scaffold",
"Stellar"
],
"author": "wilfrid",
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "^3.0.53",
"@sentry/node": "^10.62.0",
"@stellar/stellar-sdk": "^14.6.1",
"@typescript-eslint/parser": "^8.59.0",
"ai": "^6.0.168",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-async-handler": "^1.2.0",
"mongoose": "^9.5.0",
"nodemailer": "^9.0.3",
"nodemon": "^3.1.14",
"redis": "^6.0.1",
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/nodemailer": "^8.0.1",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.59.0"
}
}