forked from StellarFlow-Network/stellarflow-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "stellarflow-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"style:check": "lint-staged",
"prepare": "husky",
"test": "tsx test/marketRates.test.ts",
"test:jest": "node --experimental-vm-modules ./node_modules/.bin/jest",
"check:gas-balance": "tsx scripts/check-gas-balance.ts",
"download:ngn-rates": "tsx scripts/download-ngn-rates.ts",
"db:backup": "bash scripts/pg_backup.sh",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"docs": "typedoc",
"docs:watch": "typedoc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"@prisma/adapter-pg": "^7.5.0",
"@stellar/stellar-sdk": "^14.6.1",
"@types/node": "^22.0.0",
"@types/pg": "^8.20.0",
"axios": "^1.7.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"pg": "^8.20.0",
"redis": "^5.11.0",
"socket.io": "^4.8.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@prisma/client": "^7.6.0",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prisma": "^7.6.0",
"ts-jest": "^29.4.4",
"tsx": "^4.21.0",
"typedoc": "^0.28.18"
}
}