-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.08 KB
/
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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "blip-backend",
"version": "0.1.0",
"description": "Real-time smart contract monitoring dashboard for the Stellar Soroban ecosystem",
"main": "src/index.ts",
"repository": "https://github.com/BlipMonitor/backend-apis.git",
"scripts": {
"start": "npx prisma migrate deploy && yarn build && pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.ts",
"test": "yarn db:push && jest -i --colors --verbose --detectOpenHandles",
"test:watch": "yarn db:push && jest -i --watchAll",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.ts",
"prettier:fix": "prettier --write **/*.ts",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"prepare": "husky",
"build": "rimraf build && tsc -p tsconfig.json"
},
"keywords": [
"stellar",
"soroban",
"smart-contracts",
"monitoring",
"dashboard",
"real-time",
"node",
"typescript",
"express",
"prisma",
"postgresql",
"bigquery",
"websocket",
"jest"
],
"author": "Bhaven Kakade",
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@jest/globals": "^29.7.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.5",
"@types/node-cron": "^3.0.11",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/ws": "^8.5.12",
"@types/xss-filters": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"node-mocks-http": "^1.16.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"prisma": "^5.19.1",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@clerk/clerk-sdk-node": "^5.0.40",
"@google-cloud/bigquery": "^7.9.0",
"@prisma/client": "^5.19.1",
"@stellar/stellar-base": "^12.1.1",
"@stellar/stellar-sdk": "^12.3.0",
"@types/nodemailer": "^6.4.15",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"http-status": "^1.7.4",
"joi": "^17.13.3",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"pg": "^8.12.0",
"pm2": "^5.4.2",
"postmark": "^4.0.5",
"svix": "^1.34.0",
"winston": "^3.14.2",
"ws": "^8.18.0",
"xss-filters": "^1.2.7"
}
}