-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "bitbash-crypto-sentry",
"version": "1.0.0",
"description": "Institutional-grade cryptocurrency market surveillance engine",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"crypto",
"surveillance",
"monitoring",
"prisma",
"express"
],
"author": "Bitbash",
"license": "MIT",
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@uploadthing/react": "^7.3.3",
"concurrently": "^9.2.1",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"node-fetch": "^3.3.2",
"pg": "^8.20.0",
"uploadthing": "^7.7.4"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/pg": "^8.18.0",
"prisma": "^7.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}